19 lines
361 B
Vue
19 lines
361 B
Vue
<script setup lang="ts">
|
|
const route = useRoute()
|
|
|
|
const links = [
|
|
{
|
|
label: 'Организации',
|
|
icon: 'i-heroicons-archive-box',
|
|
to: '/organization'
|
|
},
|
|
{
|
|
label: 'TMC',
|
|
icon: 'i-heroicons-archive-box',
|
|
to: '/tmc'
|
|
}
|
|
]
|
|
</script>
|
|
<template>
|
|
<UVerticalNavigation :links="links" />
|
|
</template> |