feat(cli): improve nav scroll position

This commit is contained in:
陈嘉涵 2019-12-12 20:53:32 +08:00
parent d511508e3b
commit 6929b04d56

View File

@ -35,6 +35,24 @@ export default {
return false;
}
},
watch: {
active() {
this.scrollIntoView();
}
},
mounted() {
this.scrollIntoView();
},
methods: {
scrollIntoView() {
if (this.active && this.$el && this.$el.scrollIntoViewIfNeeded) {
this.$el.scrollIntoViewIfNeeded();
}
}
}
};
</script>