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