2023-01-07 16:11:00 +08:00
|
|
|
import {defineStore} from 'pinia'
|
2023-01-07 00:34:05 +08:00
|
|
|
|
|
|
|
|
export const useStoreDisplay = defineStore('wikiDisplay', {
|
2023-01-07 16:11:00 +08:00
|
|
|
state: () => {
|
|
|
|
|
return {
|
|
|
|
|
// 左边目录栏宽度
|
|
|
|
|
viewMenuWidth: 300,
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-01-07 00:34:05 +08:00
|
|
|
})
|