Visu Sent Monete

This commit is contained in:
Paolo Arena
2022-09-13 12:28:33 +02:00
parent f59691985a
commit 44c75768c6
29 changed files with 301 additions and 69 deletions

View File

@@ -16,6 +16,8 @@ import { CMapsEsempio } from '@src/components/CMapsEsempio'
import { useGlobalStore } from '@store/globalStore'
import { useUserStore } from '@store/UserStore'
import { static_data } from '@/db/static_data'
import { useNotifStore } from '@store/NotifStore'
import MixinBase from '@/mixins/mixin-base'
import MixinUsers from '@/mixins/mixin-users'
import { shared_consts } from '@/common/shared_vuejs'
@@ -28,6 +30,8 @@ export default defineComponent({
const globalStore = useGlobalStore()
const userStore = useUserStore()
const { getValDb } = MixinBase()
const notifStore = useNotifStore()
const { setmeta } = MixinMetaTags()
@@ -41,6 +45,7 @@ export default defineComponent({
shared_consts,
globalStore,
setmeta,
notifStore,
}
},
})