fix: tab list props
This commit is contained in:
parent
c60ad21d18
commit
e75228ef58
4 changed files with 6 additions and 6 deletions
|
|
@ -24,6 +24,7 @@ defineProps<{
|
|||
edit?: boolean;
|
||||
|
||||
isEdit?: boolean;
|
||||
tabsList?: { name: string; label: string }[];
|
||||
|
||||
editData?: (...args: unknown[]) => void;
|
||||
deleteData?: (...args: unknown[]) => void;
|
||||
|
|
@ -42,7 +43,6 @@ const zipCode = defineModel<string>('zipCode', { default: '' });
|
|||
const sameWithEmployer = defineModel<boolean>('sameWithEmployer');
|
||||
|
||||
const currentTab = defineModel<string>('currentTab');
|
||||
const tabsList = defineModel<{ name: string; label: string }[]>('tabsList');
|
||||
</script>
|
||||
<template>
|
||||
<q-dialog v-model="modal" @hide="close">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue