create-iking-admin
Version:
金合技术中台脚手架
22 lines (19 loc) • 350 B
text/typescript
/*
* @Author : wfl
* @LastEditors : wfl
* @description :
* @updateInfo :
* @Date : 2023-06-13 18:57:50
* @LastEditTime : 2023-06-13 18:58:58
*/
const useDemoStore = defineStore(
// 唯一ID
'demo',
() => {
const count = ref(0)
return {
count
}
}
)
export default useDemoStore