Files
2025-12-11 17:47:22 +08:00

19 lines
293 B
TypeScript

Component({
properties: {
disabled: {
type: Boolean,
value: false,
},
},
methods: {
onShare() {
this.triggerEvent('share');
},
onExport() {
this.triggerEvent('export');
},
},
});