8000
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 59229a3 commit b532859Copy full SHA for b532859
src/components/navbar/CNavbar.ts
@@ -69,7 +69,7 @@ const CNavbar = defineComponent({
69
type: String,
70
default: undefined,
71
required: false,
72
- validator: (value: string) =>{
+ validator: (value: string) => {
73
return ['fixed-top', 'fixed-bottom', 'sticky-top'].includes(value)
74
},
75
src/components/toast/CToastHeader.ts
@@ -24,7 +24,7 @@ const CToastHeader = defineComponent({
24
slots.default && slots.default(),
25
props.closeButton &&
26
h(CToastClose, {
27
- onClose: () => emit('close'),
+ onClose: () => emit('close'),
28
}),
29
])
30
0 commit comments