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