fix: VantImports type error (#12876)

This commit is contained in:
wChenonly
2024-05-20 23:25:44 +08:00
committed by GitHub
parent 2423e41edf
commit 4b95e92e8d

View File

@@ -131,6 +131,6 @@ export function VantImports(options: VantImportsOptions = {}) {
const moduleType = getModuleType(options);
return {
[`vant/${moduleType}`]: getAPIMap().keys(),
[`vant/${moduleType}`]: [...getAPIMap().keys()],
};
}