xiankq

Results 3 issues of xiankq

### Describe the bug ``` let { visible } = defineModel(); ``` ``` const props = defineProps(); const emit = defineEmits(); ``` ### Reproduction none ### System Info ```Shell System:...

enhancement
upstream

### Clear and concise description of the problem 当前defineModel需要依赖新的实验性提案,该提案是否能通过还是未知数。 我认为是否可以通过一个writtebleComputed进行中介是否更加符合? ### Suggested solution ```vue //====使用==== // modelValue:WrittebleComputedRef const { modelValue } = defineModel() console.log(modelValue.value) modelValue.value = 'newValue' //====输出==== const props...

enhancement

[`unref` should be placed in computed](https://github.com/vueuse/motion/blob/main/src/useMotionVariants.ts#L15) like: ```typescript export function useMotionVariants(variants: MaybeRef = {} as MaybeRef) { // Unref variants //↓↓↓↓↓↓↓ // const _variants = unref(variants) as T // Current...