UNPKG

fe-core-cli

Version:

All-in-one scaffolding, cli integrated with Vue3 ecological chain, cli of H5 page, mock template cli of Node

20 lines (19 loc) 275 B
const state = { userName: '' } const mutations = { SET_USER_NAME(state, name) { state.userName = name } } const actions = { // 设置name setUserName({ commit }, name) { commit('SET_USER_NAME', name) } } export default { state, mutations, actions }