File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 16
16
height : 60px ;
17
17
}
18
18
.todo-move , .todo-enter-active , .todo-leave-active {
19
- transition : all .25s cubic-bezier (.55 , 0 , .1 , 1 );
19
+ transition : all .25s cubic-bezier (.5 , 0 , .1 , 1 );
20
20
}
21
21
.todo-enter , .todo-leave-active {
22
22
opacity : 0 ;
@@ -94,6 +94,9 @@ <h1>todos</h1>
94
94
< script > metrics . beforeRender = now ( ) </ script >
95
95
< script src ="js/app.js "> </ script >
96
96
< script src ="js/routes.js "> </ script >
97
+ < script >
98
+ app . $mount ( '.todoapp' )
99
+ </ script >
97
100
< script > metrics . afterRender = now ( ) </ script >
98
101
< script src ="perf.js "> </ script >
99
102
</ body >
Original file line number Diff line number Diff line change 21
21
} ;
22
22
23
23
exports . app = new Vue ( {
24
-
25
- // the root element that will be compiled
26
- el : '.todoapp' ,
27
-
28
24
// app initial state
29
25
data : {
30
26
todos : todoStorage . fetch ( ) ,
You can’t perform that action at this time.
0 commit comments