File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,10 @@ var demo = new Vue({
31
31
32
32
created : function ( ) {
33
33
this . fetchData ( )
34
- this . $watch ( 'currentBranch' , function ( ) {
35
- this . fetchData ( )
36
- } )
34
+ } ,
35
+
36
+ watch : {
37
+ currentBranch : 'fetchData'
37
38
} ,
38
39
39
40
filters : {
Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ var app = new Vue({
59
59
60
60
// methods
61
61
methods : {
62
- addUser : function ( e ) {
63
- e . preventDefault ( )
62
+ addUser : function ( ) {
64
63
if ( this . isValid ) {
65
64
Users . push ( this . newUser )
66
65
this . newUser . name = ''
Original file line number Diff line number Diff line change 10
10
< body >
11
11
< div id ="app ">
12
12
< ul >
13
- < li class ="user " v-for ="user in users " v- transition>
13
+ < li class ="user " v-for ="user in users " transition >
14
14
< span > {{user.name}} - {{user.email}}</ span >
15
- < button v-on =" click: removeUser(user) "> X</ button >
15
+ < button v-on:click =" removeUser(user) "> X</ button >
16
16
</ li >
17
17
</ ul >
18
- < form id ="form " v-on =" submit: addUser ">
18
+ < form id ="form " v-on:submit.prevent =" addUser ">
19
19
< input v-model ="newUser.name ">
20
20
< input v-model ="newUser.email ">
21
21
< input type ="submit " value ="Add User ">
You can’t perform that action at this time.
0 commit comments