Charlie Duong e1940a7ff0 Introduce "ref" and "for-ref" attributes
Deprecated "w-id" and "w-for"
2016-11-13 15:39:53 -05:00

5 lines
278 B
Plaintext

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