mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Cli): windows系统禁用左右方向键快捷导航 (#8588)
Co-authored-by: nemo <nemo@nemodeMacBook-Pro.local>
This commit is contained in:
parent
c16b7a7dac
commit
ed83922042
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user