Last active
June 11, 2020 10:16
-
-
Save nicooprat/e17874dbb1866a2365e943fb68d96209 to your computer and use it in GitHub Desktop.
Example of MJML template with Vue
This file contains 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
<mjml> | |
<mj-body> | |
<mj-section> | |
<mj-column> | |
<mj-image v-if="image" width="100px" :src="image"></mj-image> | |
<mj-divider border-color="#F45E43"></mj-divider> | |
<mj-text :font-size="large ? '20px' : '16px'" color="#F45E43" font-family="helvetica">{{ text }}</mj-text> | |
<mj-button v-for="action in actions" :key="i" :href="action.href"> | |
{{ action.label }} | |
</mj-button> | |
</mj-column> | |
</mj-section> | |
</mj-body> | |
</mjml> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment