mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
21 lines
446 B
Vue
21 lines
446 B
Vue
<script setup>
|
|
const links = [{
|
|
label: 'Vertical Navigation',
|
|
to: '/navigation/vertical-navigation'
|
|
}, {
|
|
label: 'Command Palette',
|
|
to: '/navigation/command-palette'
|
|
}, {
|
|
label: 'Table',
|
|
to: '/data/table'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<UVerticalNavigation :links="links">
|
|
<template #default="{ link }">
|
|
<span class="group-hover:text-primary relative">{{ link.label }}</span>
|
|
</template>
|
|
</UVerticalNavigation>
|
|
</template>
|