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.
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 - s p a c e >
< / 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 >