There was an error while loading. Please reload this page.
1 parent 7e377f6 commit ee09f34Copy full SHA for ee09f34
1 file changed
build/build-entry.js
@@ -17,7 +17,7 @@ function buildEntry() {
17
18
const importList = Components.map(name => `import ${uppercamelize(name)} from './${name}';`);
19
const exportList = Components.map(name => `${uppercamelize(name)}`);
20
- const intallList = exportList.filter(name => !~uninstallComponents.indexOf(uppercamelize(name)));
+ const installList = exportList.filter(name => !~uninstallComponents.indexOf(uppercamelize(name)));
21
const content = `${tips}
22
import { VueConstructor } from 'vue/types';
23
${importList.join('\n')}
@@ -30,7 +30,7 @@ declare global {
30
31
const version = '${version}';
32
const components = [
33
- ${intallList.join(',\n ')}
+ ${installList.join(',\n ')}
34
];
35
36
const install = (Vue: VueConstructor) => {
0 commit comments