2020-06-09 16:17:23 +08:00

15 lines
295 B
JavaScript

Component({
options: {
styleIsolation: "apply-shared"
},
properties: {
data: Object,
form: Object
},
lifetimes: {},
methods: {
Lay: function(t) {
this.triggerEvent("Event", "Event" == t.type ? t.detail : t);
}
}
});