We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aceeaa1 commit 8c1f12bCopy full SHA for 8c1f12b
packages/coreui-vue/src/components/navbar/CNavbar.ts
@@ -74,13 +74,13 @@ const CNavbar = defineComponent({
74
'navbar',
75
{
76
[`bg-${props.color}`]: props.color,
77
- [`navbar-${props.colorScheme}`]: props.colorScheme,
78
[typeof props.expand === 'boolean'
79
? 'navbar-expand'
80
: `navbar-expand-${props.expand}`]: props.expand,
81
},
82
props.placement,
83
],
+ ...(props.colorScheme && { 'data-coreui-theme': props.colorScheme }),
84
85
props.container
86
? h(
0 commit comments