Fix inverted auto-import logic

pull/6188/head
Brads3290 2024-08-06 10:19:56 +10:00
parent 6e55ee9514
commit 57196cc3f8
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ function registerComponents(resolvePath: any, moduleOptions: ModuleOptions) {
global: true
};
!moduleOptions.autoImport && addComponent(opt);
moduleOptions.autoImport && addComponent(opt);
return {
..._item,