feat: add shopping-cart list

This commit is contained in:
Vlad Stan 2023-07-06 15:13:58 +03:00
parent 6152f6b0de
commit 676ab5cc1b
4 changed files with 29 additions and 1 deletions

View file

@ -0,0 +1,3 @@
<div>
xxxx
</div>

View file

@ -0,0 +1,18 @@
async function shoppingCartList(path) {
const template = await loadTemplateAsync(path)
Vue.component('shopping-cart-list', {
name: 'shopping-cart-list',
template,
props: ['carts', 'products'],
data: function () {
return {}
},
computed: {},
methods: {
},
created() { }
})
}