20 lines
326 B
JavaScript
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)
|
|
}
|
|
}
|
|
} |