Files
salvato.newfreeplanet/src/root/eventi/eventi.vue
2024-04-11 11:43:38 +02:00

32 lines
558 B
Vue
Executable File

<template>
<q-page class="">
<div v-if="tools.isLogged()">
<div v-if="tools.isUserOk()">
<CFinder
:ind="tools.getIndMainCardsByTable(toolsext.TABMYBACHECAS)"
:table="toolsext.TABMYBACHECAS">
</CFinder>
</div>
<div v-else>
<CUserNonVerif></CUserNonVerif>
</div>
</div>
<div v-else>
<CCheckIfIsLogged></CCheckIfIsLogged>
</div>
</q-page>
</template>
<script lang="ts" src="./eventi.ts">
</script>
<style lang="scss" scoped>
@import './eventi.scss';
</style>