init shopping cart

This commit is contained in:
Tiago Vasconcelos 2023-03-03 16:53:46 +00:00
parent 8a2bc0e345
commit 1b5079a88d
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1 @@
<q-btn dense round flat icon="shopping_cart" class="q-ml-md"></q-btn>

View file

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