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