Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <template>
  2. <h1>Aurelia Debounce</h1>
  3.  
  4. <div ref="areaContainer">
  5. <h2>Textbox:</h2>
  6.  
  7. <div style="border:1px solid blue; padding: 1em; margin: 1em;">
  8. <input value.bind="myText & debounce:800" placeholder="type here" />
  9. </div>
  10.  
  11. <div style="border:1px solid black; padding: 1em; margin: 1em;">
  12. output: ${myText}
  13. </div>
  14.  
  15. </div>
  16. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement