ant-design-vue/components/input/demo/textarea.vue

13 lines
198 B
Vue
Raw Normal View History

2017-12-07 04:31:12 +00:00
<template>
<AntTextArea placeholder="Basic usage" :rows="4"/>
</template>
<script>
import { Input } from 'antd'
export default {
components: {
AntTextArea: Input.TextArea,
},
}
</script>