This commit is contained in:
syuilo
2020-02-07 02:38:02 +09:00
parent 9c97bb431c
commit 04db5944d1
5 changed files with 83 additions and 32 deletions

View File

@ -179,6 +179,7 @@ export default Vue.extend({
return {
'p': this.post,
'n': this.post,
'h|/': this.help
};
},
@ -254,6 +255,10 @@ export default Vue.extend({
},
methods: {
help() {
this.$router.push('/docs/keyboard-shortcut');
},
back() {
if (this.canBack) window.history.back();
},