Created
September 8, 2019 05:05
-
-
Save peerasak-u/450d58bf2bdbed46f92a5034f7905633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="pug"> | |
v-container(fluid) | |
v-row( | |
align="center" | |
justify="center" | |
) | |
template(v-for="item in registerTypes") | |
v-col(cols="12" sm="5" md="4" lg="3" :key="item.headline") | |
type-card( | |
:headline="item.headline" | |
:subtitle="item.subtitle" | |
:icon="item.icon" | |
:buttonTitle="item.buttonTitle" | |
:route="item.route" | |
) | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment