当前位置:主页 > 网页前端 > vue >

vue-cli整合vuex的时候,修改actions和mutations,实现热部署的方法

时间:2021-02-07 14:47:21 | 栏目:vue | 点击:

在store.js里面添加如下的代码就可以了:

// 热重载
if (module.hot) {
 // 指定要监控的文件
 module.hot.accept(['./mutations'], () => {
 const mutations = require('./mutations').default
 // Vuex 提供的热重载接口
 store.hotUpdate({
  mutations
 })
 })
}

您可能感兴趣的文章:

相关文章