feat(home): add homepage with vuetify

This commit is contained in:
2020-01-13 22:53:50 +01:00
parent c66a182785
commit e0e6988d97
5 changed files with 60 additions and 2 deletions

25
src/App.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<v-app>
<v-app-bar app color="primary" dark>
Open Speechless
</v-app-bar>
<v-content>
</v-content>
</v-app>
</template>
<script>
export default {
name: 'App',
props: {
source: String,
},
data: () => ({
drawer: null,
}),
components: {
},
};
</script>