37 lines
832 B
Vue
Executable File
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>
|