Component({ properties: { label: { type: String, value: '' }, active: { type: Boolean, value: false }, color: { type: String, value: '' }, value: { type: String, value: '' } }, methods: { onTap() { this.triggerEvent('select', { value: this.data.value, label: this.data.label }); } } });