Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 950 Bytes

xy-textarea.md

File metadata and controls

44 lines (30 loc) · 950 Bytes

xy-textarea

多行输入框。用于替代原生textarea

使用方式

<!-- 引入 -->
<script type="module">
    import './node_modules/xy-ui/components/xy-input.js';
</script>
<!-- 使用 -->
<xy-textarea></xy-textarea>

继承自xy-input.js。大部分属性通用,不支持pattern校验。

<xy-textarea required  placeholder="required"></xy-textarea>

<xy-textarea label="info" placeholder="info" ></xy-textarea>

<xy-textarea icon="location" placeholder="location" ></xy-textarea>

行数rows

可以通过rows指定xy-textarea最大显示行数。

<xy-textarea placeholder="rows" rows="5" ></xy-textarea>