Appearance
双向同步 ref。
import { syncRef } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const a = ref(0); const b = ref(0); const stop = syncRef(a, b);
VueUse