feat: basic shipping zones UI

This commit is contained in:
Vlad Stan 2023-02-28 13:08:58 +02:00
parent 7c15f8ff45
commit dcda99830e
5 changed files with 59 additions and 2 deletions

View file

@ -0,0 +1,19 @@
async function shippingZones(path) {
const template = await loadTemplateAsync(path)
Vue.component('shipping-zones', {
name: 'shipping-zones',
template,
data: function () {
return {
zones: []
}
},
methods: {
createShippingZone: async function () {
console.log('### createShippingZone', createShippingZone)
},
editShippingZone: async function () {}
}
})
}