Quitada chismosa

This commit is contained in:
Alejandro Tasistro 2025-05-27 19:19:33 -03:00
parent 973d099bf1
commit 3949cf3400

View file

@ -9,8 +9,8 @@ import DevolucionesModal from "./DevolucionesModal.vue";
export default defineComponent({ export default defineComponent({
components: { DevolucionesModal, CategoriasContainer, ProductosContainer, Chismosa }, components: { DevolucionesModal, CategoriasContainer, ProductosContainer, Chismosa },
computed: { computed: {
...mapState('ui',["show_chismosa","show_devoluciones"]) ...mapState('ui', ["show_chismosa", "show_devoluciones"])
}, }
}) })
</script> </script>
@ -18,7 +18,6 @@ export default defineComponent({
<div class="columns ml-3 mr-3" v-else> <div class="columns ml-3 mr-3" v-else>
<categorias-container :class="show_chismosa ? 'hide-below-1024' : ''"></categorias-container> <categorias-container :class="show_chismosa ? 'hide-below-1024' : ''"></categorias-container>
<productos-container :class="show_chismosa ? 'hide-below-1024' : ''"></productos-container> <productos-container :class="show_chismosa ? 'hide-below-1024' : ''"></productos-container>
<chismosa v-show="show_chismosa"></chismosa>
<devoluciones-modal v-show="show_devoluciones"></devoluciones-modal> <devoluciones-modal v-show="show_devoluciones"></devoluciones-modal>
</div> </div>
</template> </template>