Files
myprojplanet_vite/src/root/goods/goods.vue

30 lines
468 B
Vue
Raw Normal View History

<template>
<q-page class="">
<div v-if="tools.isLogged()">
<div v-if="tools.isUserOk()">
<CTitlePage :ind="0" />
<CFinder
:table="toolsext.TABMYGOODS"
/>
<CDashboard></CDashboard>
</div>
<div v-else>
<CUserNonVerif></CUserNonVerif>
</div>
</div>
</q-page>
</template>
<script lang="ts" src="./goods.ts">
</script>
<style lang="scss" scoped>
@import './goods.scss';
</style>