12345678910111213141516171819202122232425262728 |
- export default {
-
- namespaced: true,
- state: {
-
-
-
- host: 'http://education.gxsrkj.com',
- fileHost: 'http://education.gxsrkj.com/uploads'
-
-
- },
-
- getters: {
-
- host: state => {
- return state.host
- },
-
- fileHost: state => {
- return state.fileHost
- },
- },
-
- mutations: {
- }
- }
|