## Date Picker 日期选择器 用于选择或输入日期 ### 选择日 以「日」为基本单位,基础的日期选择控件 :::demo 基本单位由`type`属性指定。快捷选项需配置`picker-options`对象中的`shortcuts` ```html ``` ::: ### 其他日期单位 通过扩展基础的日期选择,可以选择周、月、年 :::demo ```html
``` ::: ### 选择日期范围 可在一个选择器中便捷地选择一个时间范围 :::demo ```html ``` ::: ### Attributes | 参数 | 说明 | 类型 | 可选值 | 默认值 | |---------- |-------------- |---------- |-------------------------------- |-------- | | readonly | 只读 | boolean | — | false | | placeholder | 占位内容 | string | — | — | | type | 显示类型 | string | year/month/date/datetime/week | date | | format | 时间日期格式化 | string | 年 `yyyy`,月 `MM`,日 `dd`,
小时 `HH`,分 `mm`,秒 `ss` | yyyy-MM-dd | | shortcuts | 快捷选项列表,配置信息
查看下表 | object[] | — | — | ### Shortcuts | 参数 | 说明 | 类型 | 可选值 | 默认值 | |---------- |-------------- |---------- |-------------------------------- |-------- | | text | 标题文本 | string | — | — | | onClick | 选中后的回调函数,参数是 vm,可通过触发 'pick' 事件设置
选择器的值。例如 vm.$emit('pick', new Date()) | function | — | — |