42 lines
876 B
Vue
42 lines
876 B
Vue
|
<template>
|
||
|
<q-layout view="hHh lpr lFf"> <!-- Be sure to play with the Layout demo on docs -->
|
||
|
|
||
|
<!-- (Optional) The Header -->
|
||
|
<q-header elevated>
|
||
|
<q-toolbar>
|
||
|
<q-toolbar-title>
|
||
|
<q-avatar>
|
||
|
<img src="logo.svg">
|
||
|
</q-avatar>
|
||
|
<span class="gt-xs">
|
||
|
Flaschengeist
|
||
|
</span>
|
||
|
</q-toolbar-title>
|
||
|
</q-toolbar>
|
||
|
</q-header>
|
||
|
|
||
|
<!-- (Optional) The Footer -->
|
||
|
|
||
|
|
||
|
<!-- (Optional) A Drawer; you can add one more with side="right" or change this one's side -->
|
||
|
|
||
|
|
||
|
<q-page-container>
|
||
|
<!-- This is where pages get injected -->
|
||
|
<router-view />
|
||
|
</q-page-container>
|
||
|
|
||
|
</q-layout>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from '@vue/composition-api'
|
||
|
export default defineComponent({
|
||
|
name: 'OutLayout',
|
||
|
|
||
|
setup() {
|
||
|
return { }
|
||
|
}
|
||
|
})
|
||
|
</script>
|