Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Last active February 15, 2017 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreipfeiffer/821dbc8740194d6d6e4c07f7b52f58b6 to your computer and use it in GitHub Desktop.
Save andreipfeiffer/821dbc8740194d6d6e4c07f7b52f58b6 to your computer and use it in GitHub Desktop.
<template>
<div class="list-container">
<ul v-if="items.length">
<li v-for="item in items">
{{ item.name }}
</li>
</ul>
<p v-else>No items found.</p>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment