WGShare.Client.Wx/components/demo-block/index.js

28 lines
551 B
JavaScript

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);
},
},
});