mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-04 11:56:13 +02:00
14 lines
266 B
Vue
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>
|