摘要:
watch: { $route: { handler(val, oldval) { if (val != oldval) { location.reload();//重新加载数据 } }, // 深度观察监听 deep: true } }, 阅读全文
摘要:
第一种解决方法: 将vue路由模式mode: 'history' 修改为 mode: 'hash'; //router.js文件 const router = new Router({ //mode: 'history', mode: 'hash', routes: [ { path: '/', r 阅读全文