File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ function buildEntry() {
17
17
18
18
const importList = Components . map ( name => `import ${ uppercamelize ( name ) } from './${ name } ';` ) ;
19
19
const exportList = Components . map ( name => `${ uppercamelize ( name ) } ` ) ;
20
- const intallList = exportList . filter ( name => ! ~ uninstallComponents . indexOf ( uppercamelize ( name ) ) ) ;
20
+ const installList = exportList . filter ( name => ! ~ uninstallComponents . indexOf ( uppercamelize ( name ) ) ) ;
21
21
const content = `${ tips }
22
22
import { VueConstructor } from 'vue/types';
23
23
${ importList . join ( '\n' ) }
@@ -30,7 +30,7 @@ declare global {
30
30
31
31
const version = '${ version } ';
32
32
const components = [
33
- ${ intallList . join ( ',\n ' ) }
33
+ ${ installList . join ( ',\n ' ) }
34
34
];
35
35
36
36
const install = (Vue: VueConstructor) => {
You can’t perform that action at this time.
0 commit comments