Add icons 🎨

This commit is contained in:
syuilo 2019-03-11 20:12:44 +09:00
parent 883962c393
commit 3dd5f313b7
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 7 additions and 7 deletions

View File

@ -56,7 +56,7 @@
</section> </section>
<section> <section>
<header>{{ $t('advanced') }}</header> <header><fa :icon="faCogs"/> {{ $t('advanced') }}</header>
<div> <div>
<ui-switch v-model="isCat" @change="save(false)">{{ $t('is-cat') }}</ui-switch> <ui-switch v-model="isCat" @change="save(false)">{{ $t('is-cat') }}</ui-switch>
@ -66,7 +66,7 @@
</section> </section>
<section> <section>
<header>{{ $t('privacy') }}</header> <header><fa :icon="faUnlockAlt"/> {{ $t('privacy') }}</header>
<div> <div>
<ui-switch v-model="isLocked" @change="save(false)">{{ $t('is-locked') }}</ui-switch> <ui-switch v-model="isLocked" @change="save(false)">{{ $t('is-locked') }}</ui-switch>
@ -76,7 +76,7 @@
</section> </section>
<section v-if="enableEmail"> <section v-if="enableEmail">
<header>{{ $t('email') }}</header> <header><fa :icon="faEnvelope"/> {{ $t('email') }}</header>
<div> <div>
<template v-if="$store.state.i.email != null"> <template v-if="$store.state.i.email != null">
@ -89,7 +89,7 @@
</section> </section>
<section> <section>
<header>{{ $t('export-and-import') }}</header> <header><fa :icon="faBoxes"/> {{ $t('export-and-import') }}</header>
<div> <div>
<ui-select v-model="exportTarget"> <ui-select v-model="exportTarget">
@ -122,8 +122,8 @@ import { apiUrl, host } from '../../../../config';
import { toUnicode } from 'punycode'; import { toUnicode } from 'punycode';
import langmap from 'langmap'; import langmap from 'langmap';
import { unique } from '../../../../../../prelude/array'; import { unique } from '../../../../../../prelude/array';
import { faDownload, faUpload } from '@fortawesome/free-solid-svg-icons'; import { faDownload, faUpload, faUnlockAlt, faBoxes, faCogs } from '@fortawesome/free-solid-svg-icons';
import { faSave } from '@fortawesome/free-regular-svg-icons'; import { faSave, faEnvelope } from '@fortawesome/free-regular-svg-icons';
export default Vue.extend({ export default Vue.extend({
i18n: i18n('common/views/components/profile-editor.vue'), i18n: i18n('common/views/components/profile-editor.vue'),
@ -152,7 +152,7 @@ export default Vue.extend({
avatarUploading: false, avatarUploading: false,
bannerUploading: false, bannerUploading: false,
exportTarget: 'notes', exportTarget: 'notes',
faDownload, faUpload, faSave faDownload, faUpload, faSave, faEnvelope, faUnlockAlt, faBoxes, faCogs
}; };
}, },