2020-10-10 21:02:32 +00:00
|
|
|
<template>
|
2020-10-13 09:27:27 +00:00
|
|
|
<q-layout view="hHh lpr lFf">
|
|
|
|
<!-- Be sure to play with the Layout demo on docs -->
|
2020-10-10 21:02:32 +00:00
|
|
|
|
|
|
|
<!-- (Optional) The Header -->
|
|
|
|
<q-header elevated>
|
|
|
|
<q-toolbar>
|
|
|
|
<q-toolbar-title>
|
|
|
|
<q-avatar>
|
2020-10-13 09:27:27 +00:00
|
|
|
<img src="logo.svg" />
|
2020-10-10 21:02:32 +00:00
|
|
|
</q-avatar>
|
|
|
|
<span class="gt-xs">
|
|
|
|
Flaschengeist
|
|
|
|
</span>
|
|
|
|
</q-toolbar-title>
|
2020-10-13 21:13:42 +00:00
|
|
|
<q-btn
|
|
|
|
flat
|
|
|
|
round
|
|
|
|
dense
|
|
|
|
icon="mdi-information"
|
|
|
|
v-if="$route.name != 'about_out'"
|
|
|
|
@click="$router.push({ name: 'about_out' })"
|
|
|
|
/>
|
|
|
|
<q-btn
|
|
|
|
flat
|
|
|
|
round
|
|
|
|
dense
|
|
|
|
icon="mdi-login-variant"
|
|
|
|
v-if="$route.name != 'login'"
|
|
|
|
@click="$router.push({ name: 'login' })"
|
|
|
|
/>
|
2020-10-10 21:02:32 +00:00
|
|
|
</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">
|
2020-10-13 09:27:27 +00:00
|
|
|
import { defineComponent } from '@vue/composition-api';
|
2020-10-10 21:02:32 +00:00
|
|
|
export default defineComponent({
|
2020-10-13 09:27:27 +00:00
|
|
|
name: 'OutLayout'
|
|
|
|
});
|
2020-10-10 21:02:32 +00:00
|
|
|
</script>
|