Files
doodle-mini/miniprogram/components/math-bottom-buttons/math-bottom-buttons.ts
T
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');
},
},
});