tradeScreen/src/store/index.js

19 lines
311 B
JavaScript
Raw Normal View History

2023-12-08 18:51:02 +08:00
import {
defineStore
} from 'pinia'
export const areaObj = defineStore('counter', {
state: () => ({
area: {
areaCode: 510524,
streetCode: 51052410
}
}),
getters: {},
actions: {
changeArea(obj) {
this.area = obj
}
}
})