index.ts
323 Bytes
import { createPinia } from 'pinia';
import useAppStore from '@/store/modules/app';
import useAuthorizedStore from '@/store/modules/authorized';
import useSelectionStore from '@/store/modules/selection';
const pinia = createPinia();
export { useAppStore, useSelectionStore, useAuthorizedStore };
export default pinia;