summaryrefslogtreecommitdiff
path: root/src/client/app/app.vue
blob: 9de01ef060c9defe3007aba64bd539968bae72d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
<router-view id="app" v-hotkey.global="keymap"></router-view>
</template>

<script lang="ts">
import Vue from 'vue';
import { url, lang } from './config';

export default Vue.extend({
	computed: {
		keymap(): any {
			return {
				'h|slash': this.help
			};
		}
	},

	methods: {
		help() {
			window.open(`${url}/docs/${lang}/keyboard-shortcut`, '_blank');
		}
	}
});
</script>