mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
492 B
492 B
#### 选择时分
TimePicker 浮层中的列会随着 `format` 变化,当略去 `format` 中的某部分时,浮层中对应的列也会消失。
#### Hour and minute
While part of `format` is omitted, the corresponding column in panel will disappear, too.
<template>
<a-time-picker :defaultValue="moment('12:08', 'HH:mm')" format="HH:mm" />
</template>
<script>
import moment from 'moment';
export default {
methods: {
moment,
},
}
</script>