2023-01-07 16:11:00 +08:00
|
|
|
import {defineStore} from 'pinia'
|
2023-01-07 00:34:05 +08:00
|
|
|
|
|
|
|
|
export const useStorePageData = defineStore('pageData', {
|
2023-01-07 16:11:00 +08:00
|
|
|
state: () => {
|
|
|
|
|
return {
|
|
|
|
|
pageLoadStatus: 0,
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-01-07 00:34:05 +08:00
|
|
|
})
|
|
|
|
|
|