Files
myprojplanet_vite/src/root/home/home.ts
Paolo Arena cab0562de7 - Aggiunto Filtri
- Finder
2021-12-11 00:25:35 +01:00

23 lines
477 B
TypeScript
Executable File

import {
defineComponent, ref, computed,
} from 'vue'
import { tools } from '@src/store/Modules/tools'
import { CSkill } from '@/components/CSkill'
import { CFinder } from '@/components/CFinder'
import { CChartMap } from '@src/components/CChartMap'
import { CMapsEsempio } from '@src/components/CMapsEsempio'
export default defineComponent({
name: 'Home',
components: { CSkill, CChartMap, CMapsEsempio, CFinder },
setup() {
return {
tools,
}
},
})