From a59a26931e3da26cc472b889f3730f7e38dddeb9 Mon Sep 17 00:00:00 2001 From: ShuGang Zhou Date: Thu, 22 Jun 2023 21:18:03 +0800 Subject: [PATCH] chore(RollingText): fix component global type (#12010) --- packages/vant/src/rolling-text/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant/src/rolling-text/index.ts b/packages/vant/src/rolling-text/index.ts index 0e3daaec8..0723b3d5a 100644 --- a/packages/vant/src/rolling-text/index.ts +++ b/packages/vant/src/rolling-text/index.ts @@ -13,6 +13,6 @@ export type { declare module 'vue' { export interface GlobalComponents { - Van_RollingText: typeof _RollingText; + VanRollingText: typeof _RollingText; } }