14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
async function productCard(path) {
|
|
const template = await loadTemplateAsync(path)
|
|
Vue.component('product-card', {
|
|
name: 'product-card',
|
|
template,
|
|
|
|
props: ['product', 'change-page', 'add-to-cart', 'is-stall'],
|
|
data: function () {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
created() {}
|
|
})
|
|
}
|