Files

16 lines
249 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
Component({
methods: {
handleClick(e) {
console.log('handleClick: ', e);
},
handleDragStart(e) {
console.log('handleDragStart: ', e);
},
handleDragEnd(e) {
console.log('handleDragEnd: ', e);
},
},
});