File tree Expand file tree Collapse file tree 1 file changed +2
-20
lines changed Expand file tree Collapse file tree 1 file changed +2
-20
lines changed Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > Vue.js • TodoMVC</ title >
6
6
< 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 >
26
8
</ head >
27
9
< body >
28
10
< section class ="todoapp ">
@@ -36,7 +18,7 @@ <h1>todos</h1>
36
18
</ header >
37
19
< section class ="main " v-show ="todos.length " v-cloak >
38
20
< input class ="toggle-all " type ="checkbox " v-model ="allDone ">
39
- < ul class ="todo-list " is =" transition-group " name =" todo " >
21
+ < ul class ="todo-list ">
40
22
< li v-for ="todo in filteredTodos "
41
23
class ="todo "
42
24
:key ="todo.id "
You can’t perform that action at this time.
0 commit comments