// components/titleTag/titletag.js Component({ externalClasses: ['my-class','my-sub-title'], /** * 组件的属性列表 */ properties: { title:{ type:String, value:"" }, mark:{ type:String, value:"" }, subTitle:{ type:String, value:"" }, imgSrc:{ type:String, value:'../../imgs/home_right_arrow.png' } }, /** * 组件的初始数据 */ data: { }, /** * 组件的方法列表 */ methods: { tapAction() { this.triggerEvent('action') } } })