UNPKG
grapesjs-cli
Version:
latest (4.1.3)
4.1.3
4.1.2
4.1.1
4.1.0
4.0.1
4.0.0
3.0.1
3.0.0
2.0.0
1.0.15
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
GrapesJS CLI tool for the plugin development
github.com/GrapesJS/cli
GrapesJS/cli
grapesjs-cli
/
dist
/
template
/
src
/
blocks.js
10 lines
(8 loc)
•
200 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
(editor, opts = {}) => {
const
bm
= editor.BlockManager; bm.
add
(
'MY-BLOCK'
, {
label
:
'My block'
,
content
: {
type
:
'MY-COMPONENT'
}, //
media
:
'<svg>...</svg>'
, }); }