Files
myprojplanet_vite/src/root/goods/goods.vue
2022-12-01 16:55:22 +01:00

29 lines
442 B
Vue
Executable File

<template>
<q-page class="">
<div v-if="tools.isLogged()">
<CNotifAtTop />
<div v-if="tools.isUserOk()">
<CFinder
:ind="0"
:table="toolsext.TABMYGOODS"
/>
</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>