我在wordpress gutenberg中写一个块,但是wordel显示el(未定义? 我的编辑:功能是
edit: function( props ) {
function onChange( event ) {
props.setAttributes( { author: event.target.value } );
}
return el( 'input', {
value: props.attributes.author,
onChange: onChange,
} );
},
如何在插件中包含el支持?
答案 0 :(得分:0)
您应该首先定义el
,其中包含block元素。
var el = element.createElement;