summaryrefslogtreecommitdiff
path: root/src/client/pages/doc.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-10 12:54:12 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-04-10 12:54:12 +0900
commit45e5d8935362dc19d61ede2cfccadd2f4be42003 (patch)
tree1e3190210a5adb7c88ab7a13bae85102eddbd783 /src/client/pages/doc.vue
parentDefault UI redesign (#7429) (diff)
downloadmisskey-45e5d8935362dc19d61ede2cfccadd2f4be42003.tar.gz
misskey-45e5d8935362dc19d61ede2cfccadd2f4be42003.tar.bz2
misskey-45e5d8935362dc19d61ede2cfccadd2f4be42003.zip
refactor(client): Use symbol
Diffstat (limited to 'src/client/pages/doc.vue')
-rw-r--r--src/client/pages/doc.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/pages/doc.vue b/src/client/pages/doc.vue
index 8b8a89efc6..cf3628dafb 100644
--- a/src/client/pages/doc.vue
+++ b/src/client/pages/doc.vue
@@ -15,6 +15,7 @@ import MarkdownIt from 'markdown-it';
import MarkdownItAnchor from 'markdown-it-anchor';
import { url, lang } from '@client/config';
import MkLink from '@client/components/link.vue';
+import * as symbols from '@client/symbols';
const markdown = MarkdownIt({
html: true
@@ -38,7 +39,7 @@ export default defineComponent({
data() {
return {
- INFO: computed(() => this.title ? {
+ [symbols.PAGE_INFO]: computed(() => this.title ? {
title: this.title,
icon: faQuestionCircle,
} : null),