Skip to content

Instantly share code, notes, and snippets.

@hibuno
Created January 27, 2018 02:11
Show Gist options
  • Save hibuno/b8691b82cbe851f336a01f29218a904f to your computer and use it in GitHub Desktop.
Save hibuno/b8691b82cbe851f336a01f29218a904f to your computer and use it in GitHub Desktop.
Change list card to grid card
<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