40 lines
794 B
Vue
40 lines
794 B
Vue
|
<docs>
|
|||
|
---
|
|||
|
order: 6
|
|||
|
title:
|
|||
|
zh-CN: 三种大小
|
|||
|
en-US: Three Sizes
|
|||
|
---
|
|||
|
|
|||
|
## zh-CN
|
|||
|
|
|||
|
三种大小的输入框,大的用在表单中,中的为默认。
|
|||
|
|
|||
|
## en-US
|
|||
|
|
|||
|
The input box comes in three sizes. large is used in the form, while the medium size is the default.
|
|||
|
|
|||
|
</docs>
|
|||
|
|
|||
|
<template>
|
|||
|
<div>
|
|||
|
<a-time-picker v-model:value="value1" size="large" />
|
|||
|
<a-time-picker v-model:value="value2" />
|
|||
|
<a-time-picker v-model:value="value3" size="small" />
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
<script lang="ts">
|
|||
|
import dayjs from 'dayjs';
|
|||
|
import { defineComponent, ref } from 'vue';
|
|||
|
|
|||
|
export default defineComponent({
|
|||
|
setup() {
|
|||
|
return {
|
|||
|
value1: ref(dayjs('12:08:23', 'HH:mm')),
|
|||
|
value2: ref(dayjs('12:08:23', 'HH:mm')),
|
|||
|
value3: ref(dayjs('12:08:23', 'HH:mm')),
|
|||
|
};
|
|||
|
},
|
|||
|
});
|
|||
|
</script>
|