2<link
3 rel="stylesheet"
4▶ href="../../node_modules/todomvc-app-css/index.css"
5/>
6
· · ·
7<div id="app">
8▶ <section class="todoapp">
9 <header class="header">
10 <h1>todos</h1>
· · ·
10▶ <h1>todos</h1>
11 <input
12 class="new-todo"
· · ·
12▶ class="new-todo"
13 autofocus
14 autocomplete="off"
· · ·
15 placeholder="What needs to be done?"
16▶ v-model="state.newTodo"
17 @keyup.enter="addTodo"
18 />
+ 68 more matches in this file