Skip to content

Instantly share code, notes, and snippets.

@flowck
Created May 27, 2018 12:37
Show Gist options
  • Save flowck/a7875de613d5dfd99348bb161ca52a0a to your computer and use it in GitHub Desktop.
Save flowck/a7875de613d5dfd99348bb161ca52a0a to your computer and use it in GitHub Desktop.
<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