Refactor entire app structure

This commit is contained in:
Kevin Thomas
2021-07-21 17:20:44 -07:00
parent 5f120e12bc
commit 3572d69cba
16 changed files with 3176 additions and 2042 deletions

View File

@@ -1,16 +1,8 @@
<template>
<v-app>
<AppBar />
<AppBar />
<v-main>
<v-container fluid>
<router-link to="/">
Home
</router-link> |
<router-link to="/login">
Login
</router-link>
<router-view />
</v-container>
<router-view/>
</v-main>
</v-app>
</template>
@@ -22,11 +14,11 @@ export default {
name: 'App',
components: {
AppBar,
AppBar
},
data: () => ({
//
}),
})
}
</script>