mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 08:06:43 -06:00
25a69ec1b6
Refactoring of i18n
13 lines
266 B
Vue
13 lines
266 B
Vue
<template>
|
|
<mk-ui>
|
|
<b-button to="/apps" variant="primary">{{ $t('manage-apps') }}</b-button>
|
|
</mk-ui>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../i18n';
|
|
export default Vue.extend({
|
|
i18n: i18n('dev/views/index.vue')
|
|
});
|
|
</script>
|