Files

16 lines
283 B
JavaScript
Raw Permalink Normal View History

2025-08-15 14:05:08 +08:00
import icons from '../data';
Component({
data: {
icons,
},
methods: {
onIconTap(event) {
const { name, type } = event.currentTarget.dataset;
if (type === 'prefix') return;
wx.showToast({ title: name, icon: 'none', duration: 1000 });
},
},
});