PHP Classes

File: resources/js/Components/NavLink.vue

Recommend this page to a friend!
  Classes of Robert Devenyi   Iceburg SAAS PHP CRM Open Source   resources/js/Components/NavLink.vue   Download  
File: resources/js/Components/NavLink.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Iceburg SAAS PHP CRM Open Source
Application to manage the contacts of customers
Author: By
Last change:
Date: 1 year ago
Size: 743 bytes
 

Contents

Class file image Download
<script setup> import { computed } from 'vue'; import { Link } from '@inertiajs/inertia-vue3'; const props = defineProps({ href: String, active: Boolean, }); const classes = computed(() => { return props.active ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition' : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition'; }); </script> <template> <Link :href="href" :class="classes"> <slot /> </Link> </template>