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

5 lines
271 B
Plaintext

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