Skip to content

Instantly share code, notes, and snippets.

@RoySegall
Created December 7, 2019 08:25
Show Gist options
  • Save RoySegall/4ad22e469d4ba1fc06af51eff50ee7b0 to your computer and use it in GitHub Desktop.
Save RoySegall/4ad22e469d4ba1fc06af51eff50ee7b0 to your computer and use it in GitHub Desktop.
<div class="blog" v-for="(blog, id) in blogs" v-bind:key=id>
<div class="header">
<span class="title">{{blog['title']}}</span>
</div>
<div class="body">
<span>Published at: <b>{{blog['created_at']}}</b>, published by: <b>{{blog['author_name']}}</b></span>
<p>
{{blog['body']}}
</p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment