2021-10-05 00:19:17 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
import {
|
2021-10-05 00:19:17 +02:00
|
|
|
defineComponent, ref, computed,
|
2021-08-31 18:09:59 +02:00
|
|
|
} from 'vue'
|
2021-10-05 15:39:33 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
import { tools } from '@src/store/Modules/tools'
|
2021-10-08 00:38:22 +02:00
|
|
|
import { CSkill } from '@/components/CSkill'
|
2021-10-28 00:37:48 +02:00
|
|
|
import { CChartMap } from '@src/components/CChartMap'
|
|
|
|
|
import { CMapsEsempio } from '@src/components/CMapsEsempio'
|
2021-08-31 18:09:59 +02:00
|
|
|
|
2021-10-05 00:19:17 +02:00
|
|
|
|
2021-08-31 18:09:59 +02:00
|
|
|
export default defineComponent({
|
|
|
|
|
name: 'Home',
|
2021-10-28 00:37:48 +02:00
|
|
|
components: { CSkill, CChartMap, CMapsEsempio },
|
2021-08-31 18:09:59 +02:00
|
|
|
setup() {
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
tools,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|