18 lines
420 B
Vue
18 lines
420 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 == 'about'">
|
||
|
<q-card-section>
|
||
|
About
|
||
|
</q-card-section>
|
||
|
</q-card>
|
||
|
<router-view />
|
||
|
</q-page>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from '@vue/composition-api';
|
||
|
export default defineComponent({
|
||
|
// name: 'PageName'
|
||
|
});
|
||
|
</script>
|