Umbraco Element

Ease the integration with Backoffice by using a Umbraco Element

This page is a work in progress.

This provides a few methods to connect with the Backoffice, giving you the ability to:

Create an Umbraco Element

You can turn any Web Component into an Umbraco Element by using the Umbraco Element Mixin, as done in the following example:

import { UmbElementMixin } from '@umbraco-cms/backoffice/element-api'

class MyExtensionElement extends UmbElementMixin(HTMLElement) {

}

Last updated