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