HTML属性编辑器改为多行文本框。

master
vdpAdmin 2022-05-26 10:21:26 +08:00
parent d5d8865f34
commit 2a9c328362
1 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,11 @@
<template> <template>
<el-form-item :label="i18nt('designer.setting.htmlContent')"> <div>
<el-input v-model="optionModel.htmlContent"></el-input> <el-form-item :label="i18nt('designer.setting.htmlContent')">
</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>