feat(Cli): windows系统禁用左右方向键快捷导航 (#8588)

Co-authored-by: nemo <nemo@nemodeMacBook-Pro.local>
This commit is contained in:
nemo-shen 2021-04-21 09:45:24 +08:00 committed by GitHub
parent c16b7a7dac
commit ed83922042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ import DocContainer from './Container';
import DocSimulator from './Simulator';
export default {
name: 'van-doc',
name: 'VanDoc',
components: {
DocNav,
@ -83,6 +83,10 @@ export default {
},
keyboardNav(direction) {
if (/win(32|64)/.test(navigator.userAgent.toLocaleLowerCase())) {
return;
}
const nav = direction === 'prev' ? this.leftNav : this.rightNav;
if (nav.path) {
this.$router.push(this.base + nav.path);