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 {
|
2023-07-03 20:19:27 +08:00
|
|
|
spaceInfo: {},
|
2023-01-07 17:38:15 +08:00
|
|
|
pageInfo: {},
|
2023-07-03 20:19:27 +08:00
|
|
|
pageAuth: {},
|
2023-01-07 16:11:00 +08:00
|
|
|
}
|
|
|
|
|
},
|
2023-01-07 17:38:15 +08:00
|
|
|
});
|
2023-01-07 00:34:05 +08:00
|
|
|
|