Registering elements in JavaScript

Each element should have an editor.js file where the element is registered to Zion Builder plugin

import myElement from './components/myElement.vue'

import { registerElementComponent } from '@zb/editor'

registerElementComponent({
    elementType: 'my_element',
    component: myElement
})

Last updated

Was this helpful?