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

Commit 305b7a2

Browse files
committed
fix: remove logs
1 parent 1357321 commit 305b7a2

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

playground/src/App.vue

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
</router-view>
2727
</c-square>
2828
<c-h-stack top="10" right="10" pos="absolute">
29-
<c-link is-external href="https://github.com/chakra-ui/chakra-ui-vue-next">
29+
<c-link
30+
is-external
31+
href="https://github.com/chakra-ui/chakra-ui-vue-next"
32+
>
3033
<c-icon-button
3134
color="inherit"
3235
@click="toggleColorMode"
@@ -65,9 +68,6 @@ export default defineComponent({
6568
setup() {
6669
const { colorMode, toggleColorMode } = useColorMode()
6770
68-
const instance = getCurrentInstance()
69-
console.log(instance)
70-
7171
const rootStyles = computed(() => {
7272
const styles = {
7373
light: {
@@ -98,10 +98,6 @@ export default defineComponent({
9898
}
9999
})
100100
101-
watchEffect(() => {
102-
console.log("rootStyles", rootStyles.value)
103-
})
104-
105101
return {
106102
routes,
107103
colorMode,

0 commit comments

Comments
 (0)