mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
28 lines
612 B
Markdown
28 lines
612 B
Markdown
|
<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>
|
||
|
```
|