摘要:
1、window+R 输入cmd打开黑窗口,输入命令查看当前版本号: npm -v node -v 2、npm install xxx@x.y.z 例如(npm install vue@2.6.0) 3、卸载 npm uninstall 4、清除缓存: npm cache clean --force 阅读全文
摘要:
1、在App.vue页面中注册provide中定义reload provide(){ return { reload:this.reload } } 2、在App.vue页面中的methods中定义方法reload目的通过控制router-view的显示与隐藏进行重新加载页面,实现无感刷新。 rel 阅读全文
摘要:
页面缓存keep-alive 1、在路由routes中配置需要进行缓存的页面 keepAlive:true meta:{ keepAlive:true, title:"页面名称", } 如图: 2、在router-view显示的入口页面APP.vue中,对需要的页面进行缓存 <template> < 阅读全文