Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
<script src="https://cdn.jsdelivr.net/lodash/4/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
  <meta name="viewport" content="width=device-width">
  <title>todolist avec vueJS</title>
</head>
<body>
<div id="app">
  <input type="text" v-model="input">
  <button v-on:click="addTodo">Ajouter</button>
  
  <ul>
    <li 
        v-for="todo in todos"
        v-on:click="removeTodo(todo)">
      {{todo.value}}
    </li>
  </ul>
</div>
  
</body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers