Charlie Duong fc82ef0cf0 Deprecated w-on* attributes (#434)
Added support for on*() attributes.
2016-11-16 10:53:51 -08:00

5 lines
277 B
Plaintext

<div w-bind>
<input onMouseMove(false && "handleMouseMove") ref="inputWithoutHandler" type="button">
<input onMouseMove(true && 'handleMouseMove') ref="inputWithHandler" type="button">
<input onMouseMove('handleMouseMove') ref="inputWithLiteralHandler" type="button">
</div>