| 123456789101112131415161718192021222324252627282930313233343536 |
- // components/My_DisplayBox/index.js
- Component({
- options: {
- multipleSlots: true //允许使用多个slot
- },
- /**
- * 组件的属性列表
- */
- properties: {
- title: {
- type: String,
- value: "标题"
- },
- /* 更多点击回调 */
- getExhibitionTitle: {
- type: Function
- }
- },
- /**
- * 组件的初始数据
- */
- data: {
- },
- /**
- * 组件的方法列表
- */
- methods: {
- moreClick() {
- this.triggerEvent("getExhibitionTitle", this.data.title)
- }
- }
- })
|