40 lines
648 B
Vue
40 lines
648 B
Vue
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'EssentialLink',
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
caption: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
link: {
|
|
type: String,
|
|
default: '#',
|
|
},
|
|
|
|
icon: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<router-link :to="link">
|
|
<q-item clickable>
|
|
<q-item-section>
|
|
<q-item-label>{{ title }}</q-item-label>
|
|
<q-item-label caption>{{ caption }}</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
</router-link>
|
|
</template>
|