Skip to content

Commit

Permalink
fix(nav): enable empty v-model
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaubree committed Aug 18, 2023
1 parent 391dcca commit 280e004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/nav/UNav.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const props = withDefaults(defineProps<{
color: 'pilot',
ui: () => useAppUi().nav,
})
const modelValue = defineModel<string>({ required: true })
const modelValue = defineModel<string>()
const [DefineTemplate, ReuseTemplate] = createReusableTemplate<{ value: string; index: number }>()
Expand Down

0 comments on commit 280e004

Please # to comment.