EP-WachatApp/eaterplanet_ecommerce/components/fetch-coder/index.js

23 lines
314 B
JavaScript

Component({
properties: {
visible: {
type: Boolean,
value: false
},
coderList: {
type: Array
},
codeImg: {
type: String,
value: ''
}
},
data: {
selected: null
},
methods: {
close: function () {
this.triggerEvent("cancel");
}
}
});