export default { template: ` `, data() { return { value: 0, }; }, methods: { handle_click() { this.value += 1; this.$emit("change", this.value); }, reset() { this.value = 0; }, }, props: { title: String, }, };