ant-design-vue/components/time-picker/demo/size.vue

40 lines
794 B
Vue
Raw Blame History

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