Create element
This article will show you how to create an element for Beae builder follow the structure of Vue component.
Last updated
Was this helpful?
This article will show you how to create an element for Beae builder follow the structure of Vue component.
Last updated
Was this helpful?
Was this helpful?
{
name: 'Element Title',
is: 'block',
icon: 'CollectionIcon',
// thumbn: '<svg>...</svg>'
data: {
name: 'element_name'
settings: {
...
// The default settings values
},
style: {
...
// The default style values
}
}
}export { default as NameElement } from './Base/ElementFile.vue';