dykj-outsource-12123/uni_modules/uni-ui/components/uni-popup/share.js
2024-06-26 09:12:03 +08:00

17 lines
243 B
JavaScript

export default {
created() {
if (this.type === 'share') {
// 关闭点击
this.mkclick = false
}
},
methods: {
customOpen() {
console.log('share 打开了');
},
customClose() {
console.log('share 关闭了');
}
}
}