使用vue开发钉钉h5要在路由改变前设置一下钉钉内置浏览器的title,初次使用uni-app开发h5,请教下router怎么设置
一介书生
- 发布:2020-07-20 14:38
- 更新:2021-07-15 17:06
- 阅读:2349
2 个回复
一介书生 (作者)
vue方式设置title
Vue.use(router);
new Vue({
router,
render: h => h(App)
}).$mount('#app');
router.beforeEach((to, from, next) => {
/ 路由发生变化修改页面title /
if (to.meta.title) {
document.title = to.meta.title
}
dd.ready(function() {
dd.biz.navigation.setTitle({
title: document.title,
onSuccess: function(result) {
// alert('succcess')
},
onFail: function(err) {}
})
})
next()
})
炒饭包子