32 lines
583 B
Vue
Executable File
32 lines
583 B
Vue
Executable File
<template>
|
|
<CMyPage
|
|
:title="username"
|
|
imgbackground="images/calendario_eventi.jpg"
|
|
sizes="max-height: 120px"
|
|
styleadd="bottom: -20px !important;"
|
|
>
|
|
<CMyCardService
|
|
v-if="idSkill"
|
|
:table="shared_consts.TABLES_MYSKILLS"
|
|
:nopopup="true"
|
|
:idRec="idSkill"
|
|
>
|
|
</CMyCardService>
|
|
|
|
<div v-if="!tools.isLogged()">
|
|
<CCheckIfIsLogged></CCheckIfIsLogged>
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
</CMyPage>
|
|
</template>
|
|
|
|
<script lang="ts" src="./myservice.ts">
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './myservice.scss';
|
|
</style>
|
|
|