1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| // api
| // import { GetCategory } from "@/api/info";;
| // const state = {};
| // const getters = {}
| // const mutations = {}
| // const actions = {
| // categoryAction() {
| // return new Promise((resolve, reject) => {
| // GetCategory().then(response => {
| // resolve(response.data)
| // })
| // })
| // }
| // }
|
| // export default {
| // namespaced: true,
| // state,
| // getters,
| // mutations,
| // actions
| // };
|
|