Files
xdd-uniapp-new/pkg_product/mixins/themeTemplateMixins.js
T

20 lines
326 B
JavaScript

export const themeTemplateMixins = {
props: {
topImage: {
type: String,
default: ''
},
templateProperties: {
type: Object,
default: () => {
return {}
}
}
},
methods: {
itemClick(item) {
if (!item.available) return
this.$emit('view', item)
}
}
}