to_inventory/front/components/sidebar.vue

25 lines
502 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'
}
,
{
label: 'Статистика',
icon: 'i-heroicons-funnel',
to: '/stat'
}
]
</script>
<template>
<UVerticalNavigation :links="links" />
</template>