Formato
This commit is contained in:
parent
5468b79562
commit
45dcf643bf
1 changed files with 9 additions and 6 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue