flaschengeist-frontend/src/pages/home/NewHome.vue

15 lines
278 B
Vue
Raw Normal View History

2020-10-09 16:04:32 +00:00
<template>
<q-card class="col-4" height="">
<q-card-section>
Neues Zuhause
</q-card-section>
</q-card>
2020-10-09 16:04:32 +00:00
</template>
<script lang="ts">
import { defineComponent } from '@vue/composition-api';
export default defineComponent({
// name: 'PageName'
2020-10-09 16:04:32 +00:00
});
</script>