PHP Classes

File: src/components/EssentialLink.vue

Recommend this page to a friend!
  Packages of Robert Devenyi   Sibo Meal Planner   src/components/EssentialLink.vue   Download  
File: src/components/EssentialLink.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Sibo Meal Planner
App to help treat the SIBO health condition
Author: By
Last change:
Date: 8 months ago
Size: 631 bytes
 

Contents

Class file image Download
<template> <q-item clickable tag="a" target="_blank" :href="props.link"> <q-item-section v-if="props.icon" avatar> <q-icon :name="props.icon" /> </q-item-section> <q-item-section> <q-item-label>{{ props.title }}</q-item-label> <q-item-label caption>{{ props.caption }}</q-item-label> </q-item-section> </q-item> </template> <script setup> const props = defineProps({ title: { type: String, required: true, }, caption: { type: String, default: '', }, link: { type: String, default: '#', }, icon: { type: String, default: '', }, }) </script>