Appearance
创建全局状态。
import { createGlobalState } from '@base-web-kits/base-tools-vue'; import { ref } from 'vue'; const useGlobalState = createGlobalState(() => { const count = ref(0); return { count }; }); ``` 示例代码
VueUse