Sistema_Gestion_Transporte/src/pages/usuarios/Modifica.svelte

11 lines
253 B
Svelte
Raw Normal View History

2023-07-12 18:24:21 -04:00
<script>
import { onMount } from 'svelte'
import { storeLayout } from '$/stores/global'
onMount(() => {
$storeLayout.showSidebar = false;
return () => {
$storeLayout.showSidebar = true;
}
})
</script>