mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
21 lines
470 B
Vue
21 lines
470 B
Vue
<script setup lang="ts">
|
|
const links = [{
|
|
label: 'Horizontal Navigation',
|
|
to: '/components/horizontal-navigation'
|
|
}, {
|
|
label: 'Command Palette',
|
|
to: '/components/command-palette'
|
|
}, {
|
|
label: 'Table',
|
|
to: '/components/table'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UHorizontalNavigation :links="links">
|
|
<template #default="{ link }">
|
|
<span class="group-hover:text-primary relative">{{ link.label }}</span>
|
|
</template>
|
|
</UHorizontalNavigation>
|
|
</template>
|