You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
296 B
Vue

<template>
<v-main>
<transition-page>
<router-view />
</transition-page>
</v-main>
</template>
<script>
import TransitionPage from '@/components/TransitionPage'
export default {
name: 'Setup',
components: { TransitionPage },
}
</script>
<style scoped>
</style>