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 bfcbc61 commit 896d2abCopy full SHA for 896d2ab
docs/guide/examples.md
@@ -31,8 +31,8 @@
31
```vue
32
<vue-dark-mode>
33
<template v-slot="{ mode }">
34
- <MyLightIcon v-show="mode === 'dark'">
35
- <MyDarkIcon v-show="mode === 'light'">
+ <MyLightIcon v-show="mode === 'light'">
+ <MyDarkIcon v-show="mode === 'dark'">
36
<MySystemIcon v-show="mode === 'system'">
37
</template>
38
</vue-dark-mode>
0 commit comments