- edit campi prodotti

- edit ordini
This commit is contained in:
Surya Paolo
2024-01-13 00:29:02 +01:00
parent 89e8575aae
commit 3ffa2893e5
23 changed files with 749 additions and 65 deletions

View File

@@ -8,8 +8,11 @@ import { CCopyBtn } from '@/components/CCopyBtn'
import { CSingleCart } from '@/components/CSingleCart'
import { CTitleBanner } from '@/components/CTitleBanner'
import { useI18n } from '@src/boot/i18n'
import MixinUsers from '../../mixins/mixin-users'
export default defineComponent({
name: 'CMyCart',
props: {},
@@ -18,6 +21,7 @@ export default defineComponent({
setup() {
const globalStore = useGlobalStore()
const products = useProducts()
const { t } = useI18n()
const { getnumItemsCart } = MixinUsers()
@@ -70,6 +74,7 @@ export default defineComponent({
getnumItemsCart,
existsOrders,
globalStore,
t,
}
},
})