1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * long description for the file
- *
- * @summary short description for the file
- * @author wu <308822989@qq.com>
- *
- * Created at : 2018-08-27 14:57:23
- * Last modified : 2018-08-27 14:57:23
- */
- import login from './login.js';
- const state = {
- status1:0
- }
- const getters = {
- }
- const mutations = {
- }
- const actions = {
- }
- //
- export default {
- namespaced: true,
- state,
- getters,
- mutations,
- actions,
- modules: {
- login: login
- }
- }
|