Skip to content

Instantly share code, notes, and snippets.

@spyl94
Created November 8, 2018 10:49
Show Gist options
  • Save spyl94/8f1ef74874d203c732c44c352fb29e0e to your computer and use it in GitHub Desktop.
Save spyl94/8f1ef74874d203c732c44c352fb29e0e to your computer and use it in GitHub Desktop.
<template>
<div id="app" class="App">
<p class="my-component">
Je suis mon premier composant
</p>
<ul>
<li v-for="todo in todos" :key="todo.id" v-if="todos.length > 0">
{{ todo.name }} - {{ todo.dueDate.toLocaleString() }}
</li>
</ul>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment