import { defineStore } from 'pinia'; import { MAIN_STORE } from './constants'; import actions from './actions'; import state from './state'; export const useMainStore = defineStore(MAIN_STORE, () => { return { ...actions, ...state }; });