当前位置:主页 > 网页前端 > vue >
时间: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 }) }) }