Files
monica/resources/js/Components/NavLink.vue
T
2021-12-04 18:26:14 -05:00

26 lines
812 B
Vue

<template>
<Link :href="href" :class="classes">
<slot />
</Link>
</template>
<script>
import { Link } from '@inertiajs/inertia-vue3';
export default {
components: {
Link,
},
props: ['href', 'active'],
computed: {
classes() {
return this.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 duration-150 ease-in-out'
: '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 duration-150 ease-in-out'
}
}
}
</script>