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

13 lines
173 B
Vue
Raw Normal View History

2017-12-06 18:54:20 +08:00
<template>
2017-12-07 12:31:12 +08:00
<AntInput placeholder="Basic usage"/>
2017-12-06 18:54:20 +08:00
</template>
<script>
import { Input } from 'antd'
export default {
components: {
AntInput: Input,
},
}
</script>