Skip to content

Commit 896d2ab

Browse files
committed
docs: fix example
1 parent bfcbc61 commit 896d2ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guide/examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
```vue
3232
<vue-dark-mode>
3333
<template v-slot="{ mode }">
34-
<MyLightIcon v-show="mode === 'dark'">
35-
<MyDarkIcon v-show="mode === 'light'">
34+
<MyLightIcon v-show="mode === 'light'">
35+
<MyDarkIcon v-show="mode === 'dark'">
3636
<MySystemIcon v-show="mode === 'system'">
3737
</template>
3838
</vue-dark-mode>

0 commit comments

Comments
 (0)