sito Terra Della Visione...3
Pagina Operatori
This commit is contained in:
0
src/root/fundraising/fundraising.scss
Executable file
0
src/root/fundraising/fundraising.scss
Executable file
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,
|
||||
}
|
||||
},
|
||||
})
|
||||
9
src/root/fundraising/fundraising.vue
Executable file
9
src/root/fundraising/fundraising.vue
Executable file
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<CFundRaising></CFundRaising>
|
||||
|
||||
</template>
|
||||
<script lang="ts" src="./fundraising.ts">
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import './fundraising.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user