ai_images/portal-ui/src/App.vue

20 lines
228 B
Vue

<template>
<router-view></router-view>
</template>
<script>
export default {
name: 'App',
created() {
this.$auth.toggleTheme()
}
}
</script>
<style>
#app {
height: 100%;
width: 100%;
}
</style>