summaryrefslogtreecommitdiff
path: root/src/client/pages/docs.vue
blob: 049ef2ec02a996db0157e3c494930d4275f78694 (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
<template>
<div>
	<portal to="icon"><fa :icon="faQuestionCircle"/></portal>
	<portal to="title">{{ $t('help') }}</portal>
	<main class="_card">
		<div class="_content">
		</div>
	</main>
</div>
</template>

<script lang="ts">
import Vue from 'vue';
import { faQuestionCircle } from '@fortawesome/free-solid-svg-icons'

export default Vue.extend({
	metaInfo() {
		return {
			title: this.$t('help') as string,
		};
	},

	data() {
		return {
			faQuestionCircle
		}
	},
});
</script>