PHP Classes

File: resources/js/Components/Header/Title.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg CRM   resources/js/Components/Header/Title.vue   Download  
File: resources/js/Components/Header/Title.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg CRM
CRM application to manage contacts
Author: By
Last change:
Date: 1 year ago
Size: 390 bytes
 

Contents

Class file image Download
<template> <h1 class="font-semibold text-xl text-base-content pt-4"> <BaseIcon class_style="h-8 w-8 " :name="props.module.icon" /> {{props.module.label}} {{ props.page_description }} </h1> </template> <script setup> import BaseIcon from "@/Icons/BaseIcon"; const props = defineProps({ module: [Object, null], page_description: [String, null] }); </script>