summaryrefslogtreecommitdiff
path: root/src/client/app/app.vue
blob: bb8377c237899c6cf7c889f22eeae24937c43584 (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
25
26
27
28
29
30
31
<template>
<router-view id="app" v-hotkey.global="keymap"></router-view>
</template>

<script lang="ts">
import Vue from 'vue';
import { url, lang } from './config';
import applyTheme from './common/scripts/theme';
const darkTheme = require('../theme/dark');

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

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

		dark() {
			applyTheme(darkTheme);
		}
	}
});
</script>