summaryrefslogtreecommitdiff
path: root/src/client/app/dev/views/index.vue
blob: db0e4d57c240f2dc15e6e29fccd98659c283ed99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>