nav drawer

This commit is contained in:
Tim Olson
2023-12-13 21:37:50 -04:00
parent f79e55bf9a
commit c129a9c481
9 changed files with 154 additions and 91 deletions

View File

@@ -1,7 +1,8 @@
<template>
<v-app-bar flat>
<v-app-bar scroll-behavior="hide" scroll-threshold="1">
<!-- <v-app-bar-nav-icon @click="s.nav=!s.nav" icon="mdi-plus"/>-->
<v-app-bar-title>
<span class="logo clickable" @click="$router.push('/')">
<span class="logo clickable" @click="s.nav=!s.nav">
<v-icon icon="mdi-arrow-up-bold" size="x-small" class="arrow" color="green"/>
<span class="clickable">dexorder</span>
</span>
@@ -15,6 +16,8 @@
</template>
<script setup>
import {useStore} from "@/store/store";
const s = useStore()
</script>