14 lines
304 B
JavaScript
14 lines
304 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
|
|
}
|