25 lines
583 B
Vue
25 lines
583 B
Vue
<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>
|
|
<q-card-section>
|
|
{{ a }}
|
|
</q-card-section>
|
|
</q-card>
|
|
<router-view />
|
|
</q-page>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, ref } from '@vue/composition-api';
|
|
export default defineComponent({
|
|
// name: 'PageName'
|
|
setup(_, ctx) {
|
|
const a = ctx.root.$flaschengeist_plugins;
|
|
return { a };
|
|
}
|
|
});
|
|
</script>
|