File tree 2 files changed +43
-1
lines changed
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <form method =" post" action =" #" v-on:submit.prevent =" bookSubmit(bookTitle, bookAuthor)" >
3
+ <input v-model =" bookTitle" type =" text" name =" title" value =" " placeholder =" Book Title" />
4
+ <input v-model =" bookAuthor" type =" text" name =" title" value =" " placeholder =" Book Author" />
5
+ <button type =" submit" name =" button" >Save</button >
6
+ </form >
7
+ </template >
8
+
9
+ <script >
10
+ export default {
11
+ name: ' BookForm' ,
12
+ props: [' books' ],
13
+ data () {
14
+ return {
15
+ bookTitle: ' ' ,
16
+ bookAuthor: ' '
17
+ }
18
+ },
19
+ methods: {
20
+ bookSubmit (bookTitle , bookAuthor ){
21
+ this .$emit (' addBook' , bookTitle, bookAuthor);
22
+ }
23
+ }
24
+ }
25
+ </script >
26
+
27
+ <style >
28
+
29
+ </style >
Original file line number Diff line number Diff line change 4
4
<ul >
5
5
<book-item v-for =" book in books" :book =' book' ></book-item >
6
6
</ul >
7
+ <hr >
8
+ <book-form @addBook =' appendBook' ></book-form >
7
9
</div >
8
10
</template >
9
11
10
12
<script >
11
13
import BookItem from ' ./BookItem' ;
14
+ import BookForm from ' ./BookForm' ;
15
+
12
16
export default {
13
17
name: " BookList" ,
14
18
components: {
15
- BookItem
19
+ BookItem,
20
+ BookForm
16
21
},
17
22
data () {
18
23
return {
@@ -23,6 +28,14 @@ export default {
23
28
{ title: " Amusing Ourselves to Death" , author: " Neil Postman" }
24
29
]
25
30
};
31
+ },
32
+ methods : {
33
+ appendBook (bookTitle , bookAuthor ){
34
+ this .books .push ({
35
+ title: bookTitle,
36
+ author: bookAuthor
37
+ });
38
+ }
26
39
}
27
40
};
28
41
</script >
You can’t perform that action at this time.
0 commit comments