19 lines
389 B
Vue
19 lines
389 B
Vue
<script setup lang="ts">
|
|
const route = useRoute()
|
|
|
|
const links = [
|
|
{
|
|
label: 'Список ТМЦ (шаблоны)',
|
|
icon: 'i-heroicons-archive-box',
|
|
to: '/tmc'
|
|
},
|
|
{
|
|
label: 'Инвентаризации',
|
|
icon: 'i-heroicons-pencil',
|
|
to: '/table'
|
|
}
|
|
]
|
|
</script>
|
|
<template>
|
|
<UVerticalNavigation :links="links" />
|
|
</template> |