Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit a8a1339

Browse files
committed
fix: remove theme dep from examples
1 parent 7946f4c commit a8a1339

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

playground/src/App.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,15 @@
99

1010
<script lang="ts">
1111
import { defineComponent } from 'vue'
12-
import { useTheme } from '@chakra-ui/c-theme-provider'
1312
import Sidebar from './components/Sidebar.vue'
1413
import { routes } from './router'
1514
1615
export default defineComponent({
1716
components: { Sidebar },
1817
setup() {
19-
const theme = useTheme()
2018
return {
2119
routes,
22-
theme
20+
2321
}
2422
},
2523
})

0 commit comments

Comments
 (0)