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
284 B
Plaintext

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