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/time-picker/demo/size.md

28 lines
612 B

<cn>
#### 三种大小
三种大小的输入框,大的用在表单中,中的为默认。
</cn>
<us>
#### Three Sizes
The input box comes in three sizes. large is used in the form, while the medium size is the default.
</us>
```html
<template>
<div>
<a-time-picker :defaultValue="moment('12:08:23', 'HH:mm:ss')" size="large" />
<a-time-picker :defaultValue="moment('12:08:23', 'HH:mm:ss')" />
<a-time-picker :defaultValue="moment('12:08:23', 'HH:mm:ss')" size="small" />
</div>
</template>
<script>
import moment from 'moment';
export default {
methods: {
moment,
},
}
</script>
```