Guest User

Untitled

a guest
Jan 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. export class Client {
  2. months = []
  3.  
  4. activate(id) {
  5. ...
  6. this.loadData()
  7. }
  8.  
  9. loadData(){
  10. this.months.push("Item1")
  11. }
  12.  
  13. <section class="scrollable">
  14. ${months.length}
  15. <div repeat.for="month of months">
  16. Index = ${$index}
  17. </div>
  18. </section>
  19.  
  20. 1
  21. Index = 0
  22. Index = 1
Add Comment
Please, Sign In to add comment