media_player_client/src/App.vue

19 lines
363 B
Vue
Raw Normal View History

2021-08-05 14:23:45 +08:00
<template>
<q-ajax-bar position="top" color="accent" size="5px" skip-hijack />
<router-view />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { useI18n } from 'vue-i18n';
export default defineComponent({
name: 'App',
setup() {
const $t = useI18n();
document.title = $t.t('title');
return {};
},
});
</script>