mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +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>
|