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 72ebce8 commit 7388789Copy full SHA for 7388789
src/compiler/directives/on.js
@@ -1,11 +1,10 @@
1
/* @flow */
2
3
import { warn } from 'core/util/index'
4
-import { getRawAttr } from '../helpers'
5
6
export default function on (el: ASTElement, dir: ASTDirective) {
7
if (process.env.NODE_ENV !== 'production' && dir.modifiers) {
8
- warn(`v-on without argument does not support modifiers.`, getRawAttr(el, 'v-on'))
+ warn(`v-on without argument does not support modifiers.`)
9
}
10
el.wrapListeners = (code: string) => `_g(${code},${dir.value})`
11
0 commit comments