Menu
Menu v Megio panelu je jedním z nejdůležitějších prvků, který můžete nastavit dle potřeb vašeho projektu.
1. Konfigurace
assets/panel.ts
import 'megio-panel/styles'
import { createMegioPanel, useGlobals } from 'megio-panel'
import { mdiReceiptText } from '@mdi/js'
// Výchozí nastavení navbaru
const { navbar } = useGlobals()
// Mount panelu na DOM
createMegioPanel('http://localhost:8090/', {
navbar: {
brand: navbar.brand,
items: [
...navbar.items,
{
title: 'Invoices',
icon: mdiReceiptText,
activePrefix: '/invoices',
route: { name: 'megio.view.invoices' }
}
]
}
})
2. Build projektu
yarn build