Skip to content

Latest commit

 

History

History

umbraco-element

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
description
Ease the integration with Backoffice by using a Umbraco Element

Umbraco Element

{% hint style="warning" %} This page is a work in progress and may undergo further revisions, updates, or amendments. The information contained herein is subject to change without notice. {% endhint %}

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) {

}