You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
303 B

3 years ago
module.exports = {
data() {
return {};
},
props: {},
3 years ago
methods: {
$emit(name, detail, options) {
3 years ago
this.$emit(name, {
detail: detail
}, options);
3 years ago
},
3 years ago
3 years ago
set(data) {
this.setData(data);
3 years ago
return new Promise(resolve => uni.nextTick(resolve));
}
}
};