L'immagine della Bacheca metterla in fondo. Creare un'area LAVORO ed un'area BACHECA. Poter contattare la persona dalla pagina che si apre. Riscritto visualizzazione della Card Competenza
31 lines
793 B
TypeScript
Executable File
31 lines
793 B
TypeScript
Executable File
import { computed, defineComponent, PropType, ref } from 'vue'
|
|
|
|
import { ICalcStat, IOperators } from '../../model'
|
|
import { useUserStore } from '../../store/UserStore'
|
|
import { useRouter } from 'vue-router'
|
|
import { useGlobalStore } from '../../store/globalStore'
|
|
import { useI18n } from '../../boot/i18n'
|
|
|
|
import { tools } from '@store/Modules/tools'
|
|
|
|
export default defineComponent({
|
|
name: 'CDashboard',
|
|
props: {
|
|
},
|
|
setup(props) {
|
|
|
|
const userStore = useUserStore()
|
|
const $router = useRouter()
|
|
const globalStore = useGlobalStore()
|
|
const { t } = useI18n();
|
|
|
|
const calcstat = computed(() => userStore.my.calcstat ? userStore.my.calcstat : {numUsersReg: 0, numMySkills: 0, numMyBachecas: 0} )
|
|
|
|
return {
|
|
userStore,
|
|
tools,
|
|
calcstat
|
|
}
|
|
},
|
|
})
|