34 lines
552 B
Vue
34 lines
552 B
Vue
<template>
|
|
<VApp id="inspire">
|
|
<VNavigationDrawer v-model="drawer">
|
|
<!-- -->
|
|
</VNavigationDrawer>
|
|
|
|
<VAppBar>
|
|
<VAppBarNavIcon @click="drawer = !drawer" />
|
|
<VToolbarTitle>Baseline Layout</VToolbarTitle>
|
|
</VAppBar>
|
|
|
|
<VMain>
|
|
<!-- -->
|
|
</VMain>
|
|
</VApp>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const drawer = ref(false)
|
|
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'BaselineLayout',
|
|
data () {
|
|
return {
|
|
drawer: false,
|
|
}
|
|
},
|
|
}
|
|
</script>
|