19 lines
617 B
Vue
19 lines
617 B
Vue
<template>
|
|
<div v-if="links.length > 3">
|
|
<div class="flex flex-wrap -mb-1">
|
|
<template v-for="(link, key) in links">
|
|
<div v-if="link.url === null" :key="key" class="mr-1 mb-1 px-4 py-3 text-sm border rounded text-gray-400" v-html="link.label" />
|
|
<inertia-link v-else :key="key" class="mr-1 mb-1 px-4 py-3 text-sm border rounded hover:bg-white focus:border-indigo-500 focus:text-indigo-500" :class="{ 'bg-white': link.active }" :href="link.url" v-html="link.label" />
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
links: Array,
|
|
},
|
|
}
|
|
</script>
|