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
28 lines
760 B
TypeScript
Executable File
28 lines
760 B
TypeScript
Executable File
import { computed, defineComponent, onMounted, ref, watch } from 'vue'
|
|
import { useUserStore } from '@store/UserStore'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import { useI18n } from '@/boot/i18n'
|
|
import { useQuasar } from 'quasar'
|
|
import { CMyCardPopup } from '@/components/CMyCardPopup'
|
|
import { toolsext } from '@store/Modules/toolsext'
|
|
|
|
export default defineComponent({
|
|
name: 'mypagebacheca',
|
|
components: { CMyCardPopup },
|
|
props: {},
|
|
setup() {
|
|
const userStore = useUserStore()
|
|
const $route = useRoute()
|
|
const $q = useQuasar()
|
|
const { t } = useI18n()
|
|
|
|
const idBacheca = computed(() => $route.params.idBacheca ? $route.params.idBacheca.toString() : 0)
|
|
|
|
return {
|
|
t,
|
|
idBacheca,
|
|
toolsext,
|
|
}
|
|
}
|
|
})
|