nostrmarket/static/components/product-card/product-card.js
2023-03-03 14:09:13 +00:00

14 lines
271 B
JavaScript

async function productCard(path) {
const template = await loadTemplateAsync(path)
Vue.component('product-card', {
name: 'product-card',
template,
props: ['product'],
data: function () {
return {}
},
methods: {},
created() {}
})
}