This commit is contained in:
Alejandro Tasistro 2025-05-22 23:07:07 -03:00
parent 5468b79562
commit 45dcf643bf

View file

@ -1,10 +1,13 @@
<template>
<div v-show="visible" class="column">
<div class="columns is-multiline is-mobile">
<producto-card v-for="(producto,i) in this.productos" :key="i" :producto="producto">
</producto-card><!-- END BLOCK COLUMN -->
</div><!-- END COLUMNS -->
</div><!-- END CONTAINER -->
<producto-card
v-for="(producto,i) in this.productos"
:key="i"
:producto="producto">
</producto-card>
</div>
</div>
</template>
<script>
@ -20,8 +23,8 @@ export default {
},
miga: function () {
return {
nombre: this.valor,
href: "#" + this.valor
nombre: this.filtro.valor,
href: "#" + this.filtro.valor
}
}
},