From 4b95e92e8d23a0d9c94b6a8e6de072bb2b241f85 Mon Sep 17 00:00:00 2001 From: wChenonly <37658262+wChenonly@users.noreply.github.com> Date: Mon, 20 May 2024 23:25:44 +0800 Subject: [PATCH] fix: VantImports type error (#12876) --- packages/vant-auto-import-resolver/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vant-auto-import-resolver/src/index.ts b/packages/vant-auto-import-resolver/src/index.ts index aeb0a672b..872d6a696 100644 --- a/packages/vant-auto-import-resolver/src/index.ts +++ b/packages/vant-auto-import-resolver/src/index.ts @@ -131,6 +131,6 @@ export function VantImports(options: VantImportsOptions = {}) { const moduleType = getModuleType(options); return { - [`vant/${moduleType}`]: getAPIMap().keys(), + [`vant/${moduleType}`]: [...getAPIMap().keys()], }; }