godloveyou
godloveyou
Hi. This tool is super great !!! I found a BUG. non-English words like Chinese,Japanese...etc in the class file shows messy code. After I compile it using Kratau Bytecode editor,...
```vue import { inject } from 'vue' // Add a piece of code to make the `count` value get injected into the child component. const count = inject('count') {{ count...
` import { shallowRef, watch } from "vue" const state = shallowRef({ count: 1 }) // Does NOT trigger watch(state, () => { console.log("State.count Updated") }, { deep: true })...