You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/input/demo/autosize-textarea.vue

17 lines
410 B

<template>
<div>
<AntTextArea placeholder="Autosize height based on content lines" autosize />
<div style="margin: 24px 0" />
<ant-textArea placeholder="Autosize height with minimum and maximum number of lines" :autosize="{ minRows: 2, maxRows: 6 }" />
</div>
</template>
<script>
import { Input } from 'antd'
export default {
components: {
AntTextArea: Input.TextArea,
},
}
</script>