EDITOR.vue.ftl 261 字节 编辑Web IDE 1 2 3 4 5 <#if editor?? && editor.render??> ${editor.render.code} <#else> <app-code-editor :code="data.${editor.name}" :disabled="detailsModel.${editor.name}.disabled" @change="(val) =>{this.data.${editor.name} =val}" codetype="javascript" ></app-code-editor> </#if>