diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-07 19:15:08 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-07 19:15:08 +0900 |
| commit | ff059d1268fe2b4d752923ea23149ee34e7ab4b2 (patch) | |
| tree | d925f6c259fee6098190e768fdf4d0f3a5ca1d10 /src/client/app.vue | |
| parent | Fix #5854 (diff) | |
| download | misskey-ff059d1268fe2b4d752923ea23149ee34e7ab4b2.tar.gz misskey-ff059d1268fe2b4d752923ea23149ee34e7ab4b2.tar.bz2 misskey-ff059d1268fe2b4d752923ea23149ee34e7ab4b2.zip | |
wip docs
Diffstat (limited to 'src/client/app.vue')
| -rw-r--r-- | src/client/app.vue | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/client/app.vue b/src/client/app.vue index 61fd1ec382..35ae6afc91 100644 --- a/src/client/app.vue +++ b/src/client/app.vue @@ -137,7 +137,7 @@ <script lang="ts"> import Vue from 'vue'; -import { faChevronLeft, faHashtag, faBroadcastTower, faFireAlt, faEllipsisH, faPencilAlt, faBars, faTimes, faSearch, faUserCog, faCog, faUser, faHome, faStar, faCircle, faAt, faListUl, faPlus, faUserClock, faUsers, faTachometerAlt, faExchangeAlt, faGlobe, faChartBar, faCloud, faGamepad, faServer, faFileAlt, faSatellite, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; +import { faChevronLeft, faHashtag, faBroadcastTower, faFireAlt, faEllipsisH, faPencilAlt, faBars, faTimes, faSearch, faUserCog, faCog, faUser, faHome, faStar, faCircle, faAt, faListUl, faPlus, faUserClock, faUsers, faTachometerAlt, faExchangeAlt, faGlobe, faChartBar, faCloud, faGamepad, faServer, faFileAlt, faSatellite, faInfoCircle, faQuestionCircle } from '@fortawesome/free-solid-svg-icons'; import { faBell, faEnvelope, faLaugh, faComments } from '@fortawesome/free-regular-svg-icons'; import { v4 as uuid } from 'uuid'; import i18n from './i18n'; @@ -258,7 +258,7 @@ export default Vue.extend({ help() { this.$router.push('/docs/keyboard-shortcut'); }, - + back() { if (this.canBack) window.history.back(); }, @@ -487,6 +487,11 @@ export default Vue.extend({ icon: faGamepad, }, null] : []), { type: 'link', + text: this.$t('help'), + to: '/docs', + icon: faQuestionCircle, + }, { + type: 'link', text: this.$t('about'), to: '/about', icon: faInfoCircle, |