WGShare.Client.Wx/pages/notice-bar/suffixIcon/index.js

13 lines
178 B
JavaScript

Component({
data: {
visible: true,
},
methods: {
click(e) {
const { trigger } = e.detail;
console.log(`click on the ${trigger} area`);
},
},
});