diff --git a/packages/vant/src/calendar/CalendarHeader.tsx b/packages/vant/src/calendar/CalendarHeader.tsx
index 896b5648b..7cca6aef6 100644
--- a/packages/vant/src/calendar/CalendarHeader.tsx
+++ b/packages/vant/src/calendar/CalendarHeader.tsx
@@ -26,9 +26,8 @@ export default defineComponent({
}
};
- const onClickSubtitle = (event: MouseEvent) => {
+ const onClickSubtitle = (event: MouseEvent) =>
emit('click-subtitle', event);
- };
const renderSubtitle = () => {
if (props.showSubtitle) {
diff --git a/packages/vant/src/cascader/Cascader.tsx b/packages/vant/src/cascader/Cascader.tsx
index deda430eb..a6578ef69 100644
--- a/packages/vant/src/cascader/Cascader.tsx
+++ b/packages/vant/src/cascader/Cascader.tsx
@@ -205,8 +205,10 @@ export default defineComponent({
selectedOption: CascaderOption | null,
tabIndex: number
) => {
- const selected =
- selectedOption && option[valueKey] === selectedOption[valueKey];
+ const { disabled } = option;
+ const selected = !!(
+ selectedOption && option[valueKey] === selectedOption[valueKey]
+ );
const color = option.color || (selected ? props.activeColor : undefined);
const Text = slots.option ? (
@@ -217,14 +219,12 @@ export default defineComponent({
return (
onSelect(option, tabIndex)}
>
{Text}
@@ -240,7 +240,7 @@ export default defineComponent({
selectedOption: CascaderOption | null,
tabIndex: number
) => (
-
+
{options.map((option) =>
renderOption(option, selectedOption, tabIndex)
)}
diff --git a/packages/vant/src/cascader/test/__snapshots__/index.spec.ts.snap b/packages/vant/src/cascader/test/__snapshots__/index.spec.ts.snap
index 6310bbdda..f9e33e7a1 100644
--- a/packages/vant/src/cascader/test/__snapshots__/index.spec.ts.snap
+++ b/packages/vant/src/cascader/test/__snapshots__/index.spec.ts.snap
@@ -6,7 +6,11 @@ exports[`should change close icon when using close-icon prop 1`] = `
`;
exports[`should render option slot correctly 1`] = `
--
+
-
Custom Option foo
`;
@@ -14,15 +18,25 @@ exports[`should render option slot correctly 1`] = `
exports[`should render options-topăoptions-bottom slots correctly 1`] = `
Top, tab index: 0
-
- -
+
+ -
Zhejiang
- -
+
-
Jiangsu
@@ -39,7 +53,11 @@ exports[`should render title slot correctly 1`] = `
`;
exports[`should select correct option when value changed 1`] = `
-
-
+
-
Wenzhou
@@ -102,13 +120,23 @@ exports[`should update tabs when previous tab is clicked 1`] = `
style="width: 100px;"
>
-
- -
+
+ -
Zhejiang
- -
+
-
Jiangsu
@@ -127,18 +155,32 @@ exports[`should update tabs when previous tab is clicked 1`] = `
style="width: 100px;"
>
-
- -
+
+ -
Nanjing
- -
+
-
Wuxi
- -
+
-
Xuzhou