32 lines
558 B
Vue
Executable File
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>
|