// NOTE: Make sure to reload the browser with cache disabled after making changes to this file. export default { template: ` `, props: { title: String, }, data() { return { value: 0, }; }, methods: { handle_click() { this.value += 1; this.$emit("change", this.value); }, reset() { this.value = 0; }, }, };