【发布时间】:2019-03-06 03:47:17
【问题描述】:
我的 vue 组件是这样的:
<template>
...
<b-card-group deck deck v-for="row in formattedClubs">
<b-card v-for="club in row"
:title="club.description"
img-src="http://placehold.it/130?text=No-image"
img-alt="Img"
img-top>
<p class="card-text">
{{club.price}}
</p>
<p class="card-text">
{{club.country}}
</p>
<div slot="footer">
<b-btn variant="primary" block>Add</b-btn>
</div>
</b-card>
</b-card-group>
...
</template>
<script>
export default {
data: function () {
return {
clubs: [
{id:1, description:'chelsea', price:1000, country:'england'},
{id:2, description:'liverpool', price:900, country:'england'},
{id:3, description:'mu', price:800, country:'england'},
{id:4, description:'cit', price:700, country:'england'},
{id:5, description:'arsenal', price:600, country:'england'},
{id:6, description:'tottenham', price:500, country:'england'},
{id:7, description:'juventus', price:400, country:'italy'},
{id:8, description:'madrid', price:300, country:'spain'},
{id:9, description:'barcelona', price:200, country:'spain'},
{id:10, description:'psg', price:100, country:'france'}
]
}
},
computed: {
formattedClubs() {
return this.clubs.reduce((c, n, i) => {
if (i % 4 === 0) c.push([]);
c[c.length - 1].push(n);
return c;
}, []);
}
}
}
</script>
如果脚本执行,结果是这样的
第 1 行:
第 2 行:
第 3 行:
在第 1 行和第 2 行,结果和我预期的一样。 1行有4列
但是第 3 行不符合我的预期。在 1 行中只有 2 列。应该有4列,2列填满,2列是空的
我该如何解决这个问题?
【问题讨论】:
标签: twitter-bootstrap vue.js vuejs2 bootstrap-4 vue-component