sito Terra Della Visione...3

Pagina Operatori
This commit is contained in:
Paolo Arena
2022-05-27 01:33:39 +02:00
parent 5db16e441e
commit bb2604d430
100 changed files with 1725 additions and 843 deletions

View File

@@ -0,0 +1,22 @@
import { useUserStore } from '@store/UserStore'
import { useI18n } from '@src/boot/i18n'
import {
defineComponent, ref, onBeforeUnmount, onMounted,
} from 'vue'
import { useRouter } from 'vue-router'
import { CFundRaising } from '@/components'
import { tools } from '@src/store/Modules/tools'
export default defineComponent({
name: 'FundRaising',
components: { CFundRaising },
setup() {
const { t } = useI18n();
return {
t,
tools,
}
},
})