Files
newfreeplanet_OLD/src/root/bacheca/bacheca.vue

31 lines
473 B
Vue
Raw Normal View History

<template>
<q-page class="">
<div v-if="isLogged()">
<div v-if="isUserOk()">
<CTitlePage :ind="0" />
<CFinder
:table="toolsext.TABMYBACHECAS">
</CFinder>
<CDashboard></CDashboard>
</div>
<div v-else>
<CUserNonVerif></CUserNonVerif>
</div>
</div>
</q-page>
</template>
2022-02-14 11:30:53 +01:00
<script lang="ts" src="./bacheca.ts">
</script>
<style lang="scss" scoped>
2022-02-14 11:30:53 +01:00
@import './bacheca.scss';
</style>