摘要:
1 init() { //地图-固定显示重庆市 2 let _this = this 3 _this.map = new AMap.Map("container", { 4 resizeEnable: true, 5 center: [107.983524, 30.026571], 6 zoom: 阅读全文
摘要:
1 1、使用cdn方式引入不常修改的第三方插件 2 2、使用路由懒加载,例如: 3 { 4 path: "*", 5 component: resolve => require(['../views/404.vue'],resolve) 6 },// 第二种路由懒加载 component: () = 阅读全文
摘要:
1 // 解决重复点击链接的报错,在router.js中添加 2 const originalPush = Router.prototype.push 3 Router.prototype.push = function push(location) { 4 return originalPush. 阅读全文