You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/input/demo/size.vue

24 lines
403 B

<template>
<div class="example-input">
<AntInput size="large" placeholder="large size" />
<AntInput placeholder="default size" />
<AntInput size="small" placeholder="small size" />
</div>
</template>
<script>
import { Input } from 'antd'
export default {
components: {
AntInput: Input,
},
}
</script>
<style>
.example-input .ant-input {
width: 200px;
margin: 0 8px 8px 0;
}
</style>