提交 9322f115 编写于 作者: RedPing97's avatar RedPing97

优化输入框组件

上级 9467b7fd
......@@ -38,6 +38,17 @@ export default class InputBox extends Vue {
*/
@Model("change") readonly itemValue?: any;
/**
* 生命周期 (多行文本十行高度问题)
* @type {any}
* @memberof InputBox
*/
public created() {
if(this.editorType && this.editorType == "TEXTAREA_10") {
this.rows = 10;
}
}
/**
* 生命周期 (多行文本十行高度问题)
* @type {any}
......@@ -51,9 +62,6 @@ export default class InputBox extends Vue {
textarea.style=this.textareaStyle;
}
}
if(this.editorType && this.editorType == "TEXTAREA_10") {
this.rows = 10;
}
}
/**
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册