1. still no clue nothing works
This commit is contained in:
parent
d8ce99319c
commit
caf13fab2f
2 changed files with 40 additions and 34 deletions
|
@ -1,12 +1,16 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const expanded = defineProps();
|
|
||||||
const drawer = ref(false);
|
const drawer = ref(false);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<v-app-bar rounded="lg">
|
<v-container class="justify-center d-flex fill-height align-center">
|
||||||
|
<v-app-bar
|
||||||
|
rounded="lg"
|
||||||
|
class="mx-3 mt-2 w-auto max-width"
|
||||||
|
density="compact"
|
||||||
|
>
|
||||||
<template v-slot:prepend>
|
<template v-slot:prepend>
|
||||||
<v-app-bar-nav-icon @click="drawer = !drawer"></v-app-bar-nav-icon>
|
<v-app-bar-nav-icon @click="drawer = !drawer"></v-app-bar-nav-icon>
|
||||||
</template>
|
</template>
|
||||||
|
@ -40,6 +44,8 @@ const drawer = ref(false);
|
||||||
<v-list-item link title="List Item 2"></v-list-item>
|
<v-list-item link title="List Item 2"></v-list-item>
|
||||||
<v-list-item link title="List Item 3"></v-list-item>
|
<v-list-item link title="List Item 3"></v-list-item>
|
||||||
</v-navigation-drawer>
|
</v-navigation-drawer>
|
||||||
|
</v-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
.max-width { max-width: 90%; }
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|
|
@ -14,6 +14,6 @@ import { createVuetify } from "vuetify";
|
||||||
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
||||||
export default createVuetify({
|
export default createVuetify({
|
||||||
theme: {
|
theme: {
|
||||||
defaultTheme: "dark", // 'light' | 'dark'
|
defaultTheme: "light", // 'light' | 'dark'
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue