Created
May 27, 2018 12:37
-
-
Save firminochangani/a7875de613d5dfd99348bb161ca52a0a 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
<section id="vueapp"> | |
<article | |
class="post" | |
v-for="post in posts" | |
:key="post.id" | |
v-if="!loading" | |
> | |
<h1 class="title">{{ post.title }}</h1> | |
<p>{{ post.body }}</p> | |
</article> | |
<!-- Loading --> | |
<div class="loading" v-if="loading"> | |
<article v-for="fake in [0, 1, 2, 3, 4, 5]"> | |
<div class="title"></div> | |
<div class="content"></div> | |
</article> | |
</div> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment