client: fix types in tab.vue
All checks were successful
ci/woodpecker/push/lint-client Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint-backend Pipeline was successful
ci/woodpecker/push/lint-foundkey-js Pipeline was successful
ci/woodpecker/push/test Pipeline was successful

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

View file

@ -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>