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.vue

40 lines
823 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>
<a-space direction="vertical">
<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" />
</a-space>
</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>