summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/pages/note.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-11-06 01:40:11 +0900
committerGitHub <noreply@github.com>2018-11-06 01:40:11 +0900
commit9f5dc2c0df0cdba1113697bdd71637a404444065 (patch)
treea1d942cf6440f82244ef58ee7ff93103ff70f521 /src/client/app/mobile/views/pages/note.vue
parent:art: (diff)
downloadmisskey-9f5dc2c0df0cdba1113697bdd71637a404444065.tar.gz
misskey-9f5dc2c0df0cdba1113697bdd71637a404444065.tar.bz2
misskey-9f5dc2c0df0cdba1113697bdd71637a404444065.zip
[WIP] Use FontAwesome Component for Vue (#3127)
* wip * Rename * Clean up * Clean up * wip * wip * Enable tree shaking * :v: * :v: * wip * wip * Clean up
Diffstat (limited to 'src/client/app/mobile/views/pages/note.vue')
-rw-r--r--src/client/app/mobile/views/pages/note.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/mobile/views/pages/note.vue b/src/client/app/mobile/views/pages/note.vue
index d7307c79a8..4e95bcf2be 100644
--- a/src/client/app/mobile/views/pages/note.vue
+++ b/src/client/app/mobile/views/pages/note.vue
@@ -1,13 +1,13 @@
<template>
<mk-ui>
- <span slot="header"><span style="margin-right:4px;">%fa:R sticky-note%</span>%i18n:@title%</span>
+ <span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'sticky-note']"/></span>%i18n:@title%</span>
<main v-if="!fetching">
<div>
<mk-note-detail :note="note"/>
</div>
<footer>
- <router-link v-if="note.prev" :to="note.prev">%fa:angle-left% %i18n:@prev%</router-link>
- <router-link v-if="note.next" :to="note.next">%i18n:@next% %fa:angle-right%</router-link>
+ <router-link v-if="note.prev" :to="note.prev"><fa icon="angle-left"/> %i18n:@prev%</router-link>
+ <router-link v-if="note.next" :to="note.next">%i18n:@next% <fa icon="angle-right"/></router-link>
</footer>
</main>
</mk-ui>