water_xcx/components/demo-block/index.js

30 lines
586 B
JavaScript
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
Component({
options: {
multipleSlots: true,
addGlobalClass: true,
},
properties: {
title: {
type: String,
default: '',
},
desc: {
type: String,
default: '',
},
operList: Array,
padding: {
type: Boolean,
default: false,
},
},
methods: {
clickHandle(e) {
const { type } = e.currentTarget.dataset;
this.triggerEvent('clickoper', type);
},
},
});
//# sourceMappingURL=index.js.map