diff --git a/src/compiler/compile/compiler_warnings.ts b/src/compiler/compile/compiler_warnings.ts index d737d2f902..f90720ec59 100644 --- a/src/compiler/compile/compiler_warnings.ts +++ b/src/compiler/compile/compiler_warnings.ts @@ -213,9 +213,9 @@ export default { invalid_rest_eachblock_binding: (rest_element_name: string) => ({ code: 'invalid-rest-eachblock-binding', message: `...${rest_element_name} operator will create a new object and binding propagation with original object will not work` - }, + }), avoid_mouse_events_on_document: { code: 'avoid-mouse-events-on-document', message: 'Mouse enter/leave events on the document are not supported in all browsers and should be avoided' - }) + } };