12345678910111213141516171819202122232425262728 |
- import * as api from '@/api/index'
- // import {getUserInfo} from "@/api/modules/global/global";
- const state = {
- apiProxy: {
- EzServer6Api: 'EzServer6-api', // 地图底图代理
- },
- userInfo: <any>{},
- }
- const getters = {
- }
- const mutations = {
- }
- const actions = {
- }
- export default {
- namespaced: true,
- state,
- getters,
- mutations,
- actions
- }
|