You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
26 lines
512 B
26 lines
512 B
<script setup> |
|
import { computed } from 'vue'; |
|
import { Link } from '@inertiajs/vue3'; |
|
|
|
const props = defineProps({ |
|
href: { |
|
type: String, |
|
required: true, |
|
}, |
|
active: { |
|
type: Boolean, |
|
}, |
|
}); |
|
|
|
const classes = computed(() => |
|
props.active |
|
? 'flex items-center h-full px-3 border-b-2 border-primary' |
|
: 'flex items-center h-full px-3 hover:scale-110', |
|
); |
|
</script> |
|
|
|
<template> |
|
<Link :href="href" :class="classes"> |
|
<slot /> |
|
</Link> |
|
</template>
|
|
|