Skip to content

Commit 0e001ab

Browse files
author
yongnan.mao
committed
fix: Customized Dot Style has no effect, vueComponent#5648
1 parent c7e079b commit 0e001ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-steps/Steps.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ export default defineComponent({
5959
status,
6060
size,
6161
current,
62-
progressDot = slots.progressDot,
6362
initial,
6463
icons,
6564
stepIcon = slots.stepIcon,
6665
} = props;
6766
const isNav = type === 'navigation';
67+
const progressDot = props.progressDot || slots.progressDot;
6868
const adjustedLabelPlacement = progressDot ? 'vertical' : labelPlacement;
6969
const classString = classNames(prefixCls, `${prefixCls}-${direction}`, {
7070
[`${prefixCls}-${size}`]: size,

0 commit comments

Comments
 (0)