Files
SaaS-lib/hx-op/src/store/item.ts

13 lines
223 B
TypeScript
Raw Normal View History

2024-06-07 15:11:04 +08:00
import { defineStore } from 'pinia';
export const items = defineStore({
id: 'items',
state() {
return { list: [], count: 10 };
},
getters: {
double: (state: any) => state.count * 2,
},
actions: {},
});