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

24 lines
319 B
Markdown

<cn>
#### įρᔍ
įρᔍæ—ļ间选拊。
</cn>
<us>
#### disabled
A disabled state of the `TimePicker`.
</us>
```vue
<template>
<a-time-picker :default-value="moment('12:08:23', 'HH:mm:ss')" disabled />
</template>
<script>
import moment from 'moment';
export default {
methods: {
moment,
},
};
</script>
```