Appearance
带控制的 computed。
import { computedWithControl } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const count = ref(0); const double = computedWithControl(count, () => count.value * 2); ``` 示例代码
VueUse