website/ui/src/App.vue

19 lines
178 B
Vue
Raw Normal View History

2021-09-06 23:59:54 +10:00
<template>
<v-app>
<v-main>
<router-view/>
</v-main>
</v-app>
</template>
<script>
2021-10-10 17:39:23 +11:00
2021-09-06 23:59:54 +10:00
export default {
name: 'App',
2021-10-10 17:39:23 +11:00
2021-09-06 23:59:54 +10:00
data: () => ({
//
}),
2021-10-10 17:39:23 +11:00
}
2021-09-06 23:59:54 +10:00
</script>