mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-16 01:41:15 +08:00
13 lines
173 B
Vue
13 lines
173 B
Vue
<template>
|
|
<AntInput placeholder="Basic usage"/>
|
|
</template>
|
|
<script>
|
|
|
|
import { Input } from 'antd'
|
|
export default {
|
|
components: {
|
|
AntInput: Input,
|
|
},
|
|
}
|
|
</script>
|