2020-10-10 21:02:32 +00:00
|
|
|
<template>
|
|
|
|
<q-page padding class="fit row justify-center content-center items-center">
|
|
|
|
<q-card class="col-4" height="" v-if="$route.name == 'home'">
|
|
|
|
<q-card-section>
|
|
|
|
Home
|
|
|
|
</q-card-section>
|
2020-10-12 21:49:05 +00:00
|
|
|
<q-card-section>
|
|
|
|
{{ a }}
|
|
|
|
</q-card-section>
|
2020-10-10 21:02:32 +00:00
|
|
|
</q-card>
|
|
|
|
<router-view />
|
|
|
|
</q-page>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { computed, defineComponent, ref } from '@vue/composition-api';
|
|
|
|
export default defineComponent({
|
|
|
|
// name: 'PageName'
|
2020-10-12 21:49:05 +00:00
|
|
|
setup(_, ctx) {
|
|
|
|
const a = ctx.root.$flaschengeist_plugins;
|
|
|
|
return { a };
|
|
|
|
}
|
2020-10-10 21:02:32 +00:00
|
|
|
});
|
|
|
|
</script>
|