yak_handcuffs/src/store/common.ts

16 lines
260 B
TypeScript
Raw Normal View History

2025-04-01 18:07:18 +08:00
import { defineStore } from 'pinia';
export const useCommonStore = defineStore('common', {
state: () => {
return {
time: new Date()
};
},
getters: {},
actions: {
setTime() {
this.time = new Date();
}
}
});