Section
Introducing Section extensions, a home for custom content and functionality.
Last updated
Was this helpful?
Was this helpful?
{
"name": "My.Section",
"extensions": [
{
"type": "section",
"alias": "My.Section",
"name": "My Section",
"meta": {
"label": "My.Section",
"pathname": "my-section"
}
}
]
}const section : UmbExtensionManifest = {
type: "section",
alias: "Empty.Section",
name : 'Empty Section',
element : () => import('./empty-section.element.js'),
meta : {
label : 'Empty Section',
pathname : 'empty-section'
}
}