19 lines
452 B
Vue
19 lines
452 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>
|
||
|
<router-view />
|
||
|
</q-page>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { computed, defineComponent, ref } from '@vue/composition-api';
|
||
|
import {} from '';
|
||
|
export default defineComponent({
|
||
|
// name: 'PageName'
|
||
|
});
|
||
|
</script>
|