There was an error while loading. Please reload this page.
1 parent 49485a0 commit 9eda1e5Copy full SHA for 9eda1e5
components/vc-picker/RangePicker.tsx
@@ -129,6 +129,10 @@ export type RangePickerSharedProps<DateType> = {
129
activePickerIndex?: 0 | 1;
130
dateRender?: RangeDateRender<DateType>;
131
panelRender?: (originPanel: VueNode) => VueNode;
132
+ prevIcon?: VueNode;
133
+ nextIcon?: VueNode;
134
+ superPrevIcon?: VueNode;
135
+ superNextIcon?: VueNode;
136
};
137
138
type OmitPickerProps<Props> = Omit<
@@ -250,6 +254,10 @@ function RangerPicker<DateType>() {
250
254
'hideDisabledOptions',
251
255
'disabledMinutes',
252
256
'presets',
257
+ 'prevIcon',
258
+ 'nextIcon',
259
+ 'superPrevIcon',
260
+ 'superNextIcon',
253
261
] as any,
262
setup(props, { attrs, expose }) {
263
const needConfirmButton = computed(
0 commit comments