摘要:
1在main.js文件中写入以下代码: Vue.prototype.$keyBoard = function (vm, methodName, code) { document.onkeydown = function () { let key = window.event.keyCode; if 阅读全文
摘要:
首先是引入redux,我的redux是定义在自己创建的store文件夹中的index文件里: import store from '../../store/index.js' 然后在挂载完成的生命周期里,加上: store.subscribe(()=>{ //实现实时响应(被修改过的redux数据可 阅读全文