1
2
3
4
5
6
7
8
9
10
11
12
13
| import { ref } from 'vue';
| import { defineStore } from 'pinia';
|
| export const useGridStore = defineStore('grid', () => {
| // 网格控制类集合
| const gridClzList = ref([]);
|
| const selectedSatelliteProxy = undefined;
|
| const selectedGridCellAndDataDetail = ref(undefined);
|
| return { gridClzList, selectedSatelliteProxy, selectedGridCellAndDataDetail };
| });
|
|