forked from biubiubiu01/vue3-bigData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseResize.js
43 lines (39 loc) · 980 Bytes
/
useResize.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { computed } from "vue";
import { useStore } from "vuex";
import { useRouter } from "vue-router";
export default function() {
const store = useStore();
const router = useRouter();
let abcode = computed(
() => store.state.mapInfo[store.state.mapInfo.length - 1].code
);
let year = computed(() => store.state.year);
let parentInfo = computed(() => store.state.mapInfo);
const sum = computed(() => store.state.sum);
const setCommitYear = (val) => {
store.commit("SET_YEAR", val);
};
const setCommitMapInfo = (val) => {
store.commit("ADD_INFO", val);
};
const removeCommitMapInfo = (val) => {
store.commit("REMOVE_INFO", val);
};
const setCommitSum = (val) => {
store.commit("SET_SUM", val);
};
const routerChange = (val) => {
router.push(val);
};
return {
abcode,
sum,
year,
parentInfo,
setCommitYear,
setCommitSum,
removeCommitMapInfo,
setCommitMapInfo,
routerChange,
};
}