sito Terra Della Visione...3
Pagina Operatori
This commit is contained in:
22
src/root/fundraising/fundraising.ts
Executable file
22
src/root/fundraising/fundraising.ts
Executable 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,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user