store中的定义
const CountStore= defineStore('Count',()=>{
let count = ref(0);
let doubleCount = computed(()=>count*2);
return {
count,
doubleCount
}
}
调用Store
const countStore = CountStore();
let doubleStore = computed(()=>counteStore.doubleStore)