nostrmarket/static/components/customer-market/customer-market.js
2023-03-09 10:01:28 +00:00

17 lines
330 B
JavaScript

async function customerMarket(path) {
const template = await loadTemplateAsync(path)
Vue.component('customer-market', {
name: 'customer-market',
template,
props: ['products', 'exchange-rates'],
data: function () {
return {}
},
methods: {
changePage() {
return
}
}
})
}