vm=new Vue({
el: '#app',
data(){
return {
list:['1月','2月','3月','4月','5月','6月','7月'],
slide:[
{'month':['1月','2月','3月','4月']},
{'month':['5月','6月','7月','8月']}
]
};
}
})
<!-- <script src="https://unpkg.com/vue/dist/vue.js"></script> -->
<!-- <script src="https://unpkg.com/vue-router/dist/vue-router.js"></script> -->
<div id="app">
<div class="box">
<div class="slide" v-for="item in slide">
<span v-for="month in item.month" class="month">{{month}}</span>
</div>
</div>
</div>
span{
margin-right:10px;
}