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