diff --git a/components/common/CommonTabs.vue b/components/common/CommonTabs.vue index 8ab25672..1967fe08 100644 --- a/components/common/CommonTabs.vue +++ b/components/common/CommonTabs.vue @@ -8,7 +8,7 @@ const { options, command } = defineProps<{ command?: boolean }>() -const modelValue = defineModel() +const modelValue = defineModel({ required: true }) const tabs = $computed(() => { return options.map((option) => { diff --git a/components/notification/NotificationSubscribePushNotificationError.vue b/components/notification/NotificationSubscribePushNotificationError.vue index f4202eb9..682ce9ae 100644 --- a/components/notification/NotificationSubscribePushNotificationError.vue +++ b/components/notification/NotificationSubscribePushNotificationError.vue @@ -3,7 +3,7 @@ defineProps<{ title?: string message: string }>() -const modelValue = defineModel() +const modelValue = defineModel({ required: true })