[Client] Some optimizations
This commit is contained in:
parent
0dcb527bf3
commit
a63ec05e41
7 changed files with 17 additions and 11 deletions
|
|
@ -85,7 +85,7 @@
|
|||
</section>
|
||||
</ui-card>
|
||||
|
||||
<mk-drive-settings/>
|
||||
<x-drive-settings/>
|
||||
|
||||
<mk-mute-and-block/>
|
||||
|
||||
|
|
@ -182,6 +182,11 @@ import checkForUpdate from '../../../common/scripts/check-for-update';
|
|||
|
||||
export default Vue.extend({
|
||||
i18n: i18n('mobile/views/pages/settings.vue'),
|
||||
|
||||
components: {
|
||||
XDriveSettings: () => import('../../../common/views/components/drive-settings.vue')
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
apiUrl,
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
<section class="activity">
|
||||
<h2><fa icon="chart-bar"/>{{ $t('activity') }}</h2>
|
||||
<div>
|
||||
<mk-activity :user="user"/>
|
||||
<x-activity :user="user"/>
|
||||
</div>
|
||||
</section>
|
||||
<section class="frequently-replied-users">
|
||||
|
|
@ -49,7 +49,8 @@ export default Vue.extend({
|
|||
XNotes,
|
||||
XPhotos,
|
||||
XFriends,
|
||||
XFollowersYouKnow
|
||||
XFollowersYouKnow,
|
||||
XActivity: () => import('../../components/activity.vue').then(m => m.default)
|
||||
},
|
||||
props: ['user']
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue