godloveyou

Results 3 issues of 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,...

Bug

```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...

answer
zh-CN

` import { shallowRef, watch } from "vue" const state = shallowRef({ count: 1 }) // Does NOT trigger watch(state, () => { console.log("State.count Updated") }, { deep: true })...

answer
zh-CN