Created
December 7, 2019 08:25
-
-
Save RoySegall/4ad22e469d4ba1fc06af51eff50ee7b0 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
<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