19 lines
293 B
TypeScript
19 lines
293 B
TypeScript
Component({
|
|
properties: {
|
|
disabled: {
|
|
type: Boolean,
|
|
value: false,
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
onShare() {
|
|
this.triggerEvent('share');
|
|
},
|
|
|
|
onExport() {
|
|
this.triggerEvent('export');
|
|
},
|
|
},
|
|
});
|