24 lines
549 B
TypeScript
Executable File
24 lines
549 B
TypeScript
Executable File
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/CFundRaising'
|
|
import { LandingFooter } from '@/components'
|
|
import { tools } from '@src/store/Modules/tools'
|
|
|
|
export default defineComponent({
|
|
name: 'FundRaising',
|
|
components: { CFundRaising, LandingFooter },
|
|
|
|
setup() {
|
|
const { t } = useI18n();
|
|
|
|
return {
|
|
t,
|
|
tools,
|
|
}
|
|
},
|
|
})
|