PHP Classes

File: resources/js/Components/ResponsiveNavLink.vue

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Vue.js PHP CRUD Example Using Laravel Vite   resources/js/Components/ResponsiveNavLink.vue   Download  
File: resources/js/Components/ResponsiveNavLink.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Vue.js PHP CRUD Example Using Laravel Vite
Example application to manage users and blog posts
Author: By
Last change:
Date: 5 months ago
Size: 839 bytes
 

Contents

Class file image Download
<script setup> import { computed } from 'vue'; import { Link } from '@inertiajs/inertia-vue3'; const props = defineProps(['href', 'active']); const classes = computed(() => props.active ? 'block w-full pl-3 pr-4 py-2 border-l-4 border-indigo-400 text-left text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out' : 'block w-full pl-3 pr-4 py-2 border-l-4 border-transparent text-left text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition duration-150 ease-in-out' ); </script> <template> <Link :href="href" :class="classes"> <slot /> </Link> </template>