fix(NavigationMenu): highlightColor defaults to color prop

This commit is contained in:
Benjamin Canac
2024-05-28 16:39:05 +02:00
parent af43b5df25
commit 0bdd6dfe86
4 changed files with 4 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ const variants = Object.keys(theme.variants.variant)
const orientations = Object.keys(theme.variants.orientation)
const color = ref(theme.defaultVariants.color)
const highlightColor = ref(theme.defaultVariants.highlightColor)
const highlightColor = ref()
const variant = ref(theme.defaultVariants.variant)
const orientation = ref('horizontal' as const)
const highlight = ref(true)