fix: clear session active when close session

This commit is contained in:
Alexandro Uc Santos
2023-12-16 19:49:57 -06:00
parent e6eae48c73
commit 2a4bde6024
5 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
<script setup>
</script>
<template>
<h2 class="title">Buscar cargas</h2>
</template>
<style scoped>
</style>

View File

@@ -77,6 +77,7 @@ import CardEmpty from '../components/CardEmpty.vue';
</script>
<template>
<h2 class="title text-center">Seguimiento de carga</h2>
<Spiner v-if="isLoading"/>
<div v-else>
<div v-if="load">
@@ -119,7 +120,7 @@ import CardEmpty from '../components/CardEmpty.vue';
}" /> -->
</GoogleMap>
</div>
<CardEmpty text="No hay información disponible"/>
<CardEmpty v-else text="No hay información disponible"/>
</div>
</template>