diff --git a/src/core/config.js b/src/core/config.js index 823ca964473..d895b335d52 100644 --- a/src/core/config.js +++ b/src/core/config.js @@ -8,7 +8,7 @@ export type Config = { silent: boolean; devtools: boolean; errorHandler: ?Function; - ignoredElements: ?Array; + ignoredElements: Array; keyCodes: { [key: string]: number }; // platform isReservedTag: (x?: string) => boolean; @@ -46,7 +46,7 @@ const config: Config = { /** * Ignore certain custom elements */ - ignoredElements: null, + ignoredElements: [], /** * Custom user key aliases for v-on