DatePicker 日期选择
引入
通过以下方式来全局注册组件,更多注册方式请参考组件注册。
基础用法
通过 绑定当前选中的日期,通过 min-date
和 max-date
属性来设定可选的时间范围。
<van-date-picker
v-model="currentDate"
title="选择日期"
:min-date="minDate"
:max-date="maxDate"
/>
import { ref } from 'vue';
export default {
setup() {
const currentDate = ref(['2021', '01', '01']);
return {
minDate: new Date(2020, 0, 1),
currentDate,
};
},
};
选项类型
通过 columns-type
属性可以控制选项的类型,支持以任意顺序对 year
、month
和 day
进行排列组合。
- 传入
['year']
来单独选择年份。 - 传入
['month']
来单独选择月份。 - 传入
['year', 'month']
来选择年份和月份。 - 传入
['month', 'day']
来选择月份和日期。
import { ref } from 'vue';
export default {
setup() {
const currentDate = ref(['2021', '01']);
const columnsType = ['year', 'month'];
return {
maxDate: new Date(2025, 5, 1),
currentDate,
columnsType,
};
},
};
通过传入 formatter
函数,可以对选项文字进行格式化处理。
<van-date-picker
v-model="currentDate"
title="选择年月"
:min-date="minDate"
:max-date="maxDate"
:formatter="formatter"
:columns-type="columnsType"
过滤选项
通过传入 filter
函数,可以对选项数组进行过滤,实现自定义选项间隔。
<van-date-picker
v-model="currentDate"
title="选择年月"
:filter="filter"
:min-date="minDate"
:max-date="maxDate"
:columns-type="columnsType"
/>
import { ref } from 'vue';
export default {
setup() {
const currentDate = ref(['2021', '01']);
const columnsType = ['year', 'month'];
const filter = (type, options) => {
if (type === 'month') {
return options.filter((option) => Number(option.value) % 6 === 0);
}
return options;
return {
filter,
minDate: new Date(2020, 0, 1),
maxDate: new Date(2025, 5, 1),
currentTime,
columnsType,
};
},
Props
Events
类型定义
组件导出以下类型定义:
设置 min-date 或 max-date 后出现页面卡死的情况?
正确的做法是将 min-date
作为一个数据定义在 data
函数或 setup
中。
在 iOS 系统上初始化组件失败?
如果你遇到了在 iOS 上无法渲染组件的问题,请确认在创建 Date 对象时没有使用 new Date('2020-01-01')
这样的写法,iOS 不支持以中划线分隔的日期格式,正确写法是 。
对此问题的详细解释:stackoverflow。