Files
myprojplanet_vite/src/root/mainview/mainview.vue

37 lines
835 B
Vue
Raw Normal View History

<template>
<q-page class="">
2022-11-29 13:59:18 +01:00
<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>
2022-11-29 13:59:18 +01:00
<div v-if="isfinishLoading">
<CMyPageElem title="Home" mypath="home"> </CMyPageElem>
</div>
</div>
</div>
<div v-else>
2022-11-29 13:59:18 +01:00
<div v-if="isfinishLoading">
<CMyPageElem title="Home" mypath="home_logout"> </CMyPageElem>
</div>
</div>
2022-07-10 01:24:54 +02:00
<LandingFooter></LandingFooter>
</q-page>
</template>
<script lang="ts" src="./mainview.ts">
</script>
<style lang="scss" scoped>
@import './mainview.scss';
</style>