16 lines
289 B
Vue
16 lines
289 B
Vue
|
<template>
|
||
|
<q-card class="col-12">
|
||
|
<q-card-section class="text-h3">
|
||
|
Test
|
||
|
</q-card-section>
|
||
|
</q-card>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from '@vue/composition-api';
|
||
|
export default defineComponent({
|
||
|
name: 'Main',
|
||
|
setup(_, ctx) {}
|
||
|
});
|
||
|
</script>
|