摘要: 登录百度统计管理界面之后把安装代码放到入口index.html对应位置。 然后路由加入下列代码。 router.beforeEach((to, from, next) => { // 统计代码 window._hmt.push(['_trackPageview', to.fullPath]); ... 阅读全文
posted @ 2019-02-19 18:27 kkaiboo 阅读(1676) 评论(0) 推荐(0) 编辑
摘要: 路由配置 routes: [ { name:'home', path: '/home/:openname', component: Home, meta: { title: '首页' } } ] 主要代码 router.beforeEach((to, fro... 阅读全文
posted @ 2019-02-19 18:27 kkaiboo 阅读(12497) 评论(1) 推荐(0) 编辑
摘要: IOS: ios的微信对于vue的单页面项目只记住第一次进来的url,也就是说不管你在那个页面复制链接,它显示的都只是你在第一次进来的url;还有一种情况,不管你在哪个页面刷新,它就以那个页面为准,不管你在哪个页面,复制链接的显示的就是那个刷新的页面。Android: 安卓的话就需要在每个页面需要签 阅读全文
posted @ 2019-02-19 18:25 kkaiboo 阅读(1439) 评论(0) 推荐(0) 编辑
摘要: *{ margin: 0; padding: 0; -webkit-user-select: auto;} 阅读全文
posted @ 2019-02-19 18:23 kkaiboo 阅读(521) 评论(0) 推荐(0) 编辑