We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831a9ee commit b8a2ee5Copy full SHA for b8a2ee5
src/core/config.js
@@ -8,7 +8,7 @@ export type Config = {
8
silent: boolean;
9
devtools: boolean;
10
errorHandler: ?Function;
11
- ignoredElements: ?Array<string>;
+ ignoredElements: Array<string>;
12
keyCodes: { [key: string]: number };
13
// platform
14
isReservedTag: (x?: string) => boolean;
@@ -46,7 +46,7 @@ const config: Config = {
46
/**
47
* Ignore certain custom elements
48
*/
49
- ignoredElements: null,
+ ignoredElements: [],
50
51
52
* Custom user key aliases for v-on
0 commit comments