Appearance
将值转换为 ref。
import { toRef } from '@base-web-kits/base-tools-vue'; import { reactive } from 'vue'; const state = reactive({ count: 0 }); const count = toRef(state, 'count');
VueUse