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.
ant-design-vue/components/date-picker/demo/disabled.md

644 B

#### 禁用 选择框的不可用状态。 #### Disabled A disabled state of the `DatePicker`.
<template>
  <div>
    <a-date-picker :defaultValue="moment('2015-06-06', dateFormat)" disabled />
    <br />
    <a-month-picker :defaultValue="moment('2015-06', 'YYYY-MM')" disabled />
    <br />
    <a-range-picker
      :defaultValue="[moment('2015-06-06', dateFormat), moment('2015-06-06', dateFormat)]"
      disabled
    />
  </div>
</template>
<script>
import moment from 'moment';
export default {
  data(){
    this.dateFormat = 'YYYY-MM-DD'
    return {}
  },
  methods: {
    moment,
  }
}
</script>