Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <template lang="pug">
  2. v-container(fluid)
  3. v-row(
  4. align="center"
  5. justify="center"
  6. )
  7. template(v-for="item in registerTypes")
  8. v-col(cols="12" sm="5" md="4" lg="3" :key="item.headline")
  9. type-card(
  10. :headline="item.headline"
  11. :subtitle="item.subtitle"
  12. :icon="item.icon"
  13. :buttonTitle="item.buttonTitle"
  14. :route="item.route"
  15. )
  16. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement