yxk_gk_master/components/uni-popup/share.js

17 lines
259 B
JavaScript
Raw Normal View History

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