Files
EIST-Teamprojekt/frontend/src/App.vue
2022-07-22 20:55:11 +02:00

70 lines
1.0 KiB
Vue

<script>
import ItemModel from "@/components/ItemModel";
import LoginPage from "@/components/LoginPage";
import Custom404Page from "@/components/Custom404Page";
import RecipePage from "@/components/RecipeModel";
const routes = {
'/': ItemModel,
'/login': LoginPage,
'/recipes' : RecipePage
}
export default {
data() {
return {
currentPath: window.location.hash
}
},
computed: {
currentView() {
return routes[this.currentPath.slice(1) || '/'] || Custom404Page
}
},
mounted() {
window.addEventListener('hashchange', () => {
this.currentPath = window.location.hash
})
}
}
</script>
<template>
<v-app
:is="currentView"
>
<v-navigation-drawer
v-model="drawer"
absolute
bottom
temporary
>
<v-list-item>
Test
</v-list-item>
</v-navigation-drawer>
<v-app-bar app>
<!-- -->
</v-app-bar>
<v-main>
</v-main>
</v-app>
</template>
<style>
[v-cloak] {
display: none;
}
</style>