paricafe/src/client/app/dev/views/index.vue

14 lines
266 B
Vue
Raw Normal View History

2018-02-27 09:11:28 -06:00
<template>
2018-02-27 14:43:14 -06:00
<mk-ui>
<b-button to="/apps" variant="primary">{{ $t('manage-apps') }}</b-button>
2018-02-27 14:43:14 -06:00
</mk-ui>
2018-02-27 09:11:28 -06:00
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../i18n';
export default Vue.extend({
i18n: i18n('dev/views/index.vue')
});
2018-02-27 09:11:28 -06:00
</script>