Feat(民宿&节日&尖货专题页):使用模板配置渲染

This commit is contained in:
lifizer
2024-08-13 17:19:04 +08:00
parent 017f34bbf4
commit 75a821eb6c
9 changed files with 928 additions and 132 deletions
+19
View File
@@ -0,0 +1,19 @@
export const themeTemplateMixins = {
props: {
topImage: {
type: String,
default: ''
},
templateProperties: {
type: Object,
default: () => {
return {}
}
}
},
methods: {
itemClick(item) {
this.$emit('view', item)
}
}
}