Files
erqi-web/src/store/modules/toolbar.js
2025-12-24 18:19:05 +08:00

23 lines
456 B
JavaScript

import { defineStore } from 'pinia'
const useToolBarStore = defineStore(
'toolbar',
{
state: () => ({
expand: false, //地图图例位置
trawler: {
visible: false // 渔船动态详情收缩框显示
}
}),
actions: {
toogleExpand(expand) {
this.expand = expand
},
toggleTrawlerVisible(visible) {
this.trawler.visible = visible
}
}
})
export default useToolBarStore