mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-11 19:06:20 +00:00
25 lines
267 B
Vue
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>
|