18 lines
361 B
Vue
18 lines
361 B
Vue
<template>
|
|
<q-card class="col-4" height="">
|
|
<q-card-section> Neues {{ mainLink.title }} </q-card-section>
|
|
</q-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from '@vue/composition-api';
|
|
import { mainLink } from '../plugin';
|
|
|
|
export default defineComponent({
|
|
// name: 'PageName'
|
|
setup() {
|
|
return { mainLink };
|
|
}
|
|
});
|
|
</script>
|