Skip to content

Commit 5660052

Browse files
committed
revert todomvc example (need to pass e2e)
1 parent 6f4601c commit 5660052

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

examples/todomvc/index.html

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,7 @@
44
<meta charset="utf-8">
55
<title>Vue.js • TodoMVC</title>
66
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
7-
<style>
8-
[v-cloak] {
9-
display: none;
10-
}
11-
.todo-list {
12-
position: relative;
13-
overflow: hidden;
14-
}
15-
.todo {
16-
height: 60px;
17-
}
18-
.todo-move, .todo-enter-active, .todo-leave-active {
19-
transition: all .25s cubic-bezier(.5,0,.1,1);
20-
}
21-
.todo-enter, .todo-leave-active {
22-
opacity: 0;
23-
height: 0;
24-
}
25-
</style>
7+
<style>[v-cloak] { display: none; }</style>
268
</head>
279
<body>
2810
<section class="todoapp">
@@ -36,7 +18,7 @@ <h1>todos</h1>
3618
</header>
3719
<section class="main" v-show="todos.length" v-cloak>
3820
<input class="toggle-all" type="checkbox" v-model="allDone">
39-
<ul class="todo-list" is="transition-group" name="todo">
21+
<ul class="todo-list">
4022
<li v-for="todo in filteredTodos"
4123
class="todo"
4224
:key="todo.id"

0 commit comments

Comments
 (0)