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

13 lines
173 B
Vue
Raw Normal View History

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