feat(cli): support anchor

This commit is contained in:
陈嘉涵 2019-11-19 20:16:58 +08:00
parent 4588df560c
commit 6519c12656

View File

@ -31,6 +31,19 @@ window.vueRouter = router;
new Vue({ new Vue({
el: '#app', el: '#app',
mounted() {
if (this.$route.hash) {
// wait page init
setTimeout(() => {
const el = document.querySelector(this.$route.hash);
if (el) {
el.scrollIntoView({
behavior: 'smooth'
});
}
}, 1000);
}
},
render: h => h(App), render: h => h(App),
router router
}); });