Files
tk-mini-program/stores/counter.js
pengxiaolong c747f9625c 优化页面
2025-05-28 22:12:30 +08:00

17 lines
300 B
JavaScript

import { defineStore } from 'pinia';
export const useCounterStore = defineStore('counter', {
state: () => {
return {
myitem:{},
youritem:{},
};
},
// 也可以这样定义
// state: () => ({ count: 0 })
actions: {
increment() {
this.count++;
},
},
});