Friends Notification
Starting Group Create Notification...
This commit is contained in:
0
src/root/home/home.scss
Executable file
0
src/root/home/home.scss
Executable file
21
src/root/home/home.ts
Executable file
21
src/root/home/home.ts
Executable 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
26
src/root/home/home.vue
Executable 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>
|
||||
Reference in New Issue
Block a user