mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 13:39:40 +08:00
13 lines
198 B
Vue
13 lines
198 B
Vue
<template>
|
|
<AntTextArea placeholder="Basic usage" :rows="4"/>
|
|
</template>
|
|
<script>
|
|
|
|
import { Input } from 'antd'
|
|
export default {
|
|
components: {
|
|
AntTextArea: Input.TextArea,
|
|
},
|
|
}
|
|
</script>
|