Guest User

Untitled

a guest
Jan 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <div id="app">
  2. <v-app>
  3. <v-container>
  4. <v-layout>
  5. <v-flex>
  6. <h1 class='grey'>Single</h1>
  7. <h1 v-for='(number, index) in numbers' :key="index">{{ number }}</h1>
  8. </v-flex>
  9. <v-flex>
  10. <h1 class='grey'>Double</h1>
  11. <h1 v-for='double in doubles'>{{ double }}</h1>
  12. </v-flex>
  13. <v-flex>
  14. <h1 class='grey'>Triple</h1>
  15. <h1 v-for='triple in triples'>{{ triple }}</h1>
  16. </v-flex>
  17. </v-layout>
  18. </v-container>
  19. </v-app>
  20. </div>
Add Comment
Please, Sign In to add comment