9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
import { createPinia } from 'pinia'
|
|
import { useAppStore } from '@/pinia/modules/app'
|
|
import { useUserStore } from '@/pinia/modules/user'
|
|
import { useDictionaryStore } from '@/pinia/modules/dictionary'
|
|
|
|
const store = createPinia()
|
|
|
|
export { store, useAppStore, useUserStore, useDictionaryStore }
|