descrizione specifiche emit
per documentare la funzionalità
| | |
| | | // 'isFavorite' |
| | | // ], |
| | | props: { |
| | | id:{ |
| | | id: { |
| | | title: String, |
| | | required: true |
| | | }, |
| | |
| | | // } |
| | | }, |
| | | }, |
| | | |
| | | emits:['toggle-favorite'], |
| | | // emits: { |
| | | // 'toggle-favorite': function (id) { |
| | | // if (id) { |
| | | // return true; |
| | | // } else { |
| | | // return false; |
| | | // } |
| | | // } |
| | | // }, |
| | | data() { |
| | | return { |
| | | detailsAreVisible: false, |
| | |
| | | this.detailsAreVisible = !this.detailsAreVisible; |
| | | }, |
| | | toggleFavorite() { |
| | | // this.friendIsFavorite = !this.friendIsFavorite; |
| | | this.$emit('toggle-favorite', this.id); |
| | | }, |
| | | }, |