Skip to content

Commit c00fc39

Browse files
committed
Creating a BookForm Component
1 parent 1044e8a commit c00fc39

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

src/components/BookForm.vue

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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>

src/components/BookList.vue

+14-1
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,20 @@
44
<ul>
55
<book-item v-for="book in books" :book='book'></book-item>
66
</ul>
7+
<hr>
8+
<book-form @addBook='appendBook'></book-form>
79
</div>
810
</template>
911

1012
<script>
1113
import BookItem from './BookItem';
14+
import BookForm from './BookForm';
15+
1216
export default {
1317
name: "BookList",
1418
components: {
15-
BookItem
19+
BookItem,
20+
BookForm
1621
},
1722
data() {
1823
return {
@@ -23,6 +28,14 @@ export default {
2328
{ title: "Amusing Ourselves to Death", author: "Neil Postman" }
2429
]
2530
};
31+
},
32+
methods : {
33+
appendBook(bookTitle, bookAuthor){
34+
this.books.push({
35+
title: bookTitle,
36+
author: bookAuthor
37+
});
38+
}
2639
}
2740
};
2841
</script>

0 commit comments

Comments
 (0)