| | |
| | | <header> |
| | | <h1>My friends</h1> |
| | | </header> |
| | | <new-friend @add-contact="addContact"></new-friend> |
| | | <ul> |
| | | <friend-contact |
| | | v-for="friend in friends" |
| | | :key="friend.id" |
| | | :name="friend.name" |
| | | :phone-number="friend.phone" |
| | | :email-address="friend.email" |
| | | :is-favorite="true" |
| | | ></friend-contact> |
| | | <friend-contact v-for="friend in friends" |
| | | :key="friend.id" |
| | | :id="friend.id" |
| | | :name="friend.name" |
| | | :phone-number="friend.phone" |
| | | :email-address="friend.email" |
| | | :is-favorite="friend.isFavorite" |
| | | @toggle-favorite="toggleFavoriteStatus" |
| | | @delete="deleteContact" |
| | | > |
| | | </friend-contact> |
| | | </ul> |
| | | </section> |
| | | </template> |
| | |
| | | name: "Manuel Lorenz", |
| | | phone: "01234 5678 991", |
| | | email: "manuel@localhost.com", |
| | | isFavorite: true, |
| | | }, |
| | | { |
| | | id: "julie", |
| | | name: "Julie Jones", |
| | | phone: "09876 543 221", |
| | | email: "julie@localhost.com", |
| | | isFavorite: true, |
| | | }, |
| | | ], |
| | | } |
| | | }, |
| | | watch: { |
| | | |
| | | }, |
| | | methods: { |
| | | toggleFavoriteStatus(friendId) { |
| | | const found = this.friends.find( |
| | | (friend) => friend.id === friendId |
| | | ); |
| | | found.isFavorite = !found.isFavorite; |
| | | }, |
| | | |
| | | addContact(name, phone, email) { |
| | | const newFriendContact={ |
| | | id: new Date().toISOString + name, |
| | | name: name, |
| | | phone: phone, |
| | | email:email, |
| | | }; |
| | | |
| | | this.friends.push(newFriendContact); |
| | | }, |
| | | deleteContact (friendId){ |
| | | this.friends = this.friends.filter( |
| | | (friend) => friend.id != friendId |
| | | ); |
| | | }, |
| | | |
| | | } |
| | | }; |
| | | </script> |
| | | |
| | |
| | | list-style: none; |
| | | } |
| | | |
| | | #app li { |
| | | #app li, |
| | | #app form { |
| | | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.26); |
| | | margin: 1rem auto; |
| | | border-radius: 10px; |
| | |
| | | border-color: #ec3169; |
| | | box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.26); |
| | | } |
| | | |
| | | #app input { |
| | | font: inherit; |
| | | padding: 0.15rem; |
| | | } |
| | | |
| | | #app label { |
| | | font-weight: bold; |
| | | margin-right: 1rem; |
| | | width: 7rem; |
| | | display: inline-block; |
| | | } |
| | | |
| | | #app form div { |
| | | margin: 1rem 0; |
| | | } |
| | | </style> |