返回 Social Auto Upload
index.js
根目录 / sau_frontend / src / stores / index.js
1 import { createPinia } from 'pinia'
2 import { useUserStore } from './user'
3 import { useAccountStore } from './account'
4 import { useAppStore } from './app'
5
6 const pinia = createPinia()
7
8 export default pinia
9 export { useUserStore, useAccountStore, useAppStore }
9 lines JAVASCRIPT