2024-09-01 21:51:50 +01:00

31 lines
408 B
JavaScript

// components/verifyfailed/verifyfailed.js
Component({
/**
* Component properties
*/
properties: {
},
/**
* Component initial data
*/
data: {
},
/**
* Component methods
*/
methods: {
show_service() {
this.triggerEvent('service', {}, {});
},
go_back() {
this.triggerEvent('back', {}, {});
},
}
})