Files
myprojplanet_vite/src/root/mainview/mainview.vue
Surya Paolo 574f389200 - creato editor di Pagine (iniziato)
- fix: mancano i "t," su alcuni componenti...
2025-09-02 16:22:13 +02:00

37 lines
832 B
Vue
Executable File

<template>
<q-page class="">
<span
>{{
setmeta({
title: t('ws.sitename'),
description: t('ws.siteshortname'),
keywords: t('ws.keywords'),
})
}}
</span>
<div v-if="tools.isLogged()">
<div v-if="!tools.isUserOk()">
<CUserNonVerif></CUserNonVerif>
</div>
<div v-else>
<div v-if="isfinishLoading">
<CMyPageElem title="Home" mypath="home"> </CMyPageElem>
</div>
</div>
</div>
<div v-else>
<div v-if="isfinishLoading">
<CMyPageElem title="Home" mypath="home_logout"> </CMyPageElem>
</div>
</div>
<LandingFooter></LandingFooter>
</q-page>
</template>
<script lang="ts" src="./mainview.ts">
</script>
<style lang="scss" scoped>
@import './mainview.scss';
</style>