mirror of
https://github.com/Spythere/srjp-td2.git
synced 2026-05-03 13:38:12 +00:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { defineStore } from 'pinia';
|
|
|
|
export const useGlobalStore = defineStore('global', {
|
|
state: () => ({}),
|
|
getters: {},
|
|
actions: {},
|
|
});
|