25 lines
579 B
Vue
25 lines
579 B
Vue
<script>
|
|
import TablaBarrios from "./TablaBarrios.vue";
|
|
import DropdownDescargar from "../DropdownDescargar.vue";
|
|
import ModalBarrio from "./ModalBarrio.vue";
|
|
import { mapState } from "vuex";
|
|
|
|
export default {
|
|
name: "BarriosSeccion",
|
|
components: { DropdownDescargar, TablaBarrios, ModalBarrio },
|
|
computed: {
|
|
...mapState("comisiones", ["grupo_de_compra_actual"])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<modal-barrio v-if="grupo_de_compra_actual"/>
|
|
<dropdown-descargar/>
|
|
<tabla-barrios/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|