feature login

This commit is contained in:
chiayin
2023-01-31 15:38:14 +08:00
parent cd074c3c04
commit 76463f084c
25 changed files with 569 additions and 69 deletions

22
src/components/Navbar.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<nav class="bg-neutral">
<div class="mx-auto px-8 w-full h-12">
<div class="flex justify-between items-center py-2 h-full" v-show="showNavbarBreadcrumb">
files
</div>
</div>
</nav>
</template>
<script>
export default {
data() {
return {
showNavbarBreadcrumb: false,
};
},
mounted() {
this.showNavbarBreadcrumb = this.$route.matched[0].name !== ('AuthContainer')? true : false;
},
}
</script>