12345678910111213141516171819202122232425262728293031 |
- window.Event = new Vue();
- Vue.component('coupon', {
- methods: {
- onCouponApplied() {
- Event.$emit('applied');
- }
- },
- template: `
- <input placeholder="Enter your coupon code" @blur="onCouponApplied" />
- `,
- });
- const app = new Vue({
- el: '#root',
- data: {
- couponApplied: false,
- },
- created() {
- Event.$on('applied', this.onCouponApplied);
- },
- methods: {
- onCouponApplied() {
- this.couponApplied = true;
- }
- }
- });
|