Files
noisedash/src/App.vue
2021-07-21 17:58:29 -07:00

25 lines
267 B
Vue

<template>
<v-app>
<AppBar />
<v-main>
<router-view />
</v-main>
</v-app>
</template>
<script>
import AppBar from '@/components/AppBar'
export default {
name: 'App',
components: {
AppBar
},
data: () => ({
//
})
}
</script>