Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <template>
  2. <button click.delegate="toggleLine()">toggleLine</button><br/>
  3. <svg width="100" height="100">
  4. <line
  5. if.bind="line"
  6. x1.bind="line.sx"
  7. y1.bind="line.sy"
  8. x2.bind="line.ex"
  9. y2.bind="line.ey" stroke="black"></line>
  10. </svg>
  11.  
  12. <button click.delegate="toggleTemplate()">Toggle Template</button>
  13. <div if.bind="shouldDisplayTemplate">
  14. <input type="text" value.bind="firstName">
  15. </div>
  16.  
  17. <h1>Amount of times first name was accessed: ${amountOfTimesAccessed}</h1>
  18.  
  19. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement