app.component('review-form', { template: /*html*/ `

Leave a review

`, data() { return { name: '', text: '', rating: null } }, methods: { onSubmit() { const review = { name: this.name, text: this.text, rating: this.rating } this.$emit('review-submitted', review) this.name = '' this.text = '' this.rating = null } } })