fix: store循环引用 (#1880)
This commit is contained in:
parent
b651ef8373
commit
c2ce7009e6
|
@ -0,0 +1,3 @@
|
|||
import { createPinia } from 'pinia'
|
||||
|
||||
export const store = createPinia()
|
|
@ -1,7 +1,5 @@
|
|||
import type { App } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
|
||||
export const store = createPinia()
|
||||
import { store } from './helper'
|
||||
|
||||
export function setupStore(app: App) {
|
||||
app.use(store)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { defineStore } from 'pinia'
|
||||
import type { AppState, Language, Theme } from './helper'
|
||||
import { getLocalSetting, setLocalSetting } from './helper'
|
||||
import { store } from '@/store'
|
||||
import { store } from '@/store/helper'
|
||||
|
||||
export const useAppStore = defineStore('app-store', {
|
||||
state: (): AppState => getLocalSetting(),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { defineStore } from 'pinia'
|
||||
import { getToken, removeToken, setToken } from './helper'
|
||||
import { store } from '@/store'
|
||||
import { store } from '@/store/helper'
|
||||
import { fetchSession } from '@/api'
|
||||
|
||||
interface SessionResponse {
|
||||
|
|
Loading…
Reference in New Issue