fix(@vant/cli): should allow to click anchor (#9434)

* fix(@vant/cli): should allow to click anchor

* chore: add
This commit is contained in:
neverland 2021-09-10 11:07:28 +08:00 committed by GitHub
parent 7f38a0d988
commit 8382fd15ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 1 deletions

View File

@ -17,6 +17,24 @@ export default {
return this.$route.name;
},
},
mounted() {
const anchors = [].slice.call(this.$el.querySelectorAll('h2, h3, h4, h5'));
anchors.forEach((anchor) => {
anchor.addEventListener('click', this.scrollToAnchor);
});
},
methods: {
scrollToAnchor(event) {
if (event.target.id) {
this.$router.push({
name: this.$route.name,
hash: '#' + event.target.id,
});
}
},
},
};
</script>

View File

@ -0,0 +1,6 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": true
}
}

View File

@ -9,5 +9,5 @@
"esModuleInterop": true,
"lib": ["esnext", "dom"]
},
"include": ["src/**/*", "site"]
"include": ["src/**/*"]
}