Created
January 27, 2018 02:11
-
-
Save hibuno/b8691b82cbe851f336a01f29218a904f to your computer and use it in GitHub Desktop.
Change list card to grid card
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> | |
<div class="mt-5"> | |
<div class="container"> | |
<div class="card-columns"> | |
<div class="card" v-for="item in posts" v-bind:key="item.key"> | |
<img class="card-img-top" :src="item.urlToImage" alt="Card image cap"> | |
<div class="card-body"> | |
<p class="card-text"><small class="text-muted">{{ item.author }} - {{ item.source.name }}</small></p> | |
<h5 class="card-title">{{ item.title }}</h5> | |
<p class="card-text"><small class="text-muted">{{ item.publishedAt }}</small></p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment