dykj-outsource-12123/uni_modules/uni-ui/components/uni-popup/share.js

17 lines
243 B
JavaScript
Raw Normal View History

2024-06-26 09:12:03 +08:00
export default {
created() {
if (this.type === 'share') {
// 关闭点击
this.mkclick = false
}
},
methods: {
customOpen() {
console.log('share 打开了');
},
customClose() {
console.log('share 关闭了');
}
}
}