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

0
src/root/home/home.scss Executable file
View File

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,
}
},
})

26
src/root/home/home.vue Executable file
View File

@@ -0,0 +1,26 @@
<template>
<q-page class="">
<h1>Inizio:</h1>
<CSkill>
</CSkill>
<!--<CChartMap
title="Mappa"
subtitle="cartina..."
serie1="Serie 1"
>
</CChartMap>-->
<!--<CMapsEsempio></CMapsEsempio>-->
</q-page>
</template>
<script lang="ts" src="./home.ts">
</script>
<style lang="scss" scoped>
@import './home.scss';
</style>