Suzhou-SafetyToolsWarning-WX/components/demo-block/index.js

27 lines
515 B
JavaScript
Raw Normal View History

2025-11-07 14:54:09 +08:00
Component({
options: {
multipleSlots: true,
},
properties: {
title: {
type: String,
value: '',
},
desc: {
type: String,
value: '',
},
operList: Array,
padding: {
type: Boolean,
value: false,
},
},
methods: {
clickHandle(e) {
const { type } = e.currentTarget.dataset;
this.triggerEvent('clickoper', type);
},
},
});