nostrmarket/static/components/product-card/product-card.js
Tiago Vasconcelos 8a2bc0e345 routing done
2023-03-03 16:53:35 +00:00

14 lines
286 B
JavaScript

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