Skip to content

Instantly share code, notes, and snippets.

@velopert
Created January 21, 2017 05:09
Show Gist options
  • Save velopert/ed695ebb4ae56a841771bbbdd601336f to your computer and use it in GitHub Desktop.
Save velopert/ed695ebb4ae56a841771bbbdd601336f 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