const state = { username: '霍东伟', link: 0, }; const mutations = { changeLink: function(state) { state.link++; } }; export default { namespaced: true, state, mutations }