ant-design-vue/antdv-demo/docs/time-picker/demo/basic.md

27 lines
497 B
Markdown
Raw Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 基本
点击 TimePicker然后可以在浮层中选择或者输入某一时间。
</cn>
<us>
#### Basic
Click `TimePicker`, and then we could select or input a time in panel.
</us>
```vue
<template>
<a-time-picker :default-open-value="moment('00:00:00', 'HH:mm:ss')" @change="onChange" />
</template>
<script>
import moment from 'moment';
export default {
methods: {
moment,
onChange(time, timeString) {
console.log(time, timeString);
},
},
};
</script>
```