client: fix types in tab.vue

This commit is contained in:
Norm 2022-10-10 22:42:17 -04:00
parent 08c65e9797
commit e8ed254e4d
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

View file

@ -17,12 +17,12 @@ const emit = defineEmits<{
(ev: 'update:modelValue', value: string): void;
}>();
const props = defineProps<{
defineProps<{
modelValue: string;
options: {
value: string;
label: string;
};
}[];
}>();
</script>