HTML属性编辑器改为多行文本框。
parent
d5d8865f34
commit
2a9c328362
|
@ -1,7 +1,11 @@
|
||||||
<template>
|
<template>
|
||||||
|
<div>
|
||||||
<el-form-item :label="i18nt('designer.setting.htmlContent')">
|
<el-form-item :label="i18nt('designer.setting.htmlContent')">
|
||||||
<el-input v-model="optionModel.htmlContent"></el-input>
|
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label-width="0">
|
||||||
|
<el-input type="textarea" v-model="optionModel.htmlContent" :rows="5" class="html-content-editor"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -19,5 +23,8 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.html-content-editor {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue