1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 11:56:13 +02:00
Files
misskey/src/client/app/dev/views/index.vue
syuilo 25a69ec1b6 Refactoring of i18n (#3165)
Refactoring of i18n
2018-11-09 03:44:35 +09:00

14 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>