nostrmarket/static/components/product-card/product-card.js

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() {}
})
}