forked from FoundKeyGang/FoundKey
client: fix types in tab.vue
This commit is contained in:
parent
08c65e9797
commit
e8ed254e4d
1 changed files with 2 additions and 2 deletions
|
@ -17,12 +17,12 @@ const emit = defineEmits<{
|
||||||
(ev: 'update:modelValue', value: string): void;
|
(ev: 'update:modelValue', value: string): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const props = defineProps<{
|
defineProps<{
|
||||||
modelValue: string;
|
modelValue: string;
|
||||||
options: {
|
options: {
|
||||||
value: string;
|
value: string;
|
||||||
label: string;
|
label: string;
|
||||||
};
|
}[];
|
||||||
}>();
|
}>();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue