Friends Notification

Starting Group Create Notification...
This commit is contained in:
Paolo Arena
2022-07-28 21:47:55 +02:00
parent 68106e69fc
commit a509eefd7e
13 changed files with 1395 additions and 0 deletions

21
src/root/home/home.ts Executable file
View File

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