From b903a87ce94d0496671e3c7f513d8faa8f70c736 Mon Sep 17 00:00:00 2001 From: IceFox Date: Fri, 10 Apr 2020 16:34:45 +0800 Subject: [PATCH] Carousel: fix console typo bug (#18264) --- packages/carousel/src/item.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/carousel/src/item.vue b/packages/carousel/src/item.vue index 907574e96..0474bc469 100644 --- a/packages/carousel/src/item.vue +++ b/packages/carousel/src/item.vue @@ -88,7 +88,7 @@ } if (parentType === 'card') { if (parentDirection === 'vertical') { - console.warn('[Element Warn][Carousel]vertical directionis not supported in card mode'); + console.warn('[Element Warn][Carousel]vertical direction is not supported in card mode'); } this.inStage = Math.round(Math.abs(index - activeIndex)) <= 1; this.active = index === activeIndex;