EDITOR.vue.ftl 281 字节
<#if item.render??>
    ${item.render.code}
<#else>
<div style="${editor.getEditorCssStyle()}">
  <app-checkbox :value="this.data.${editor.name}" @change="($event)=>{this.data.${editor.name} = $event} " :disabled="detailsModel.${editor.name}.disabled"></app-checkbox>
</div>
</#if>