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 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 "
You can’t perform that action at this time.
0 commit comments