vue.js 用 rowspans 渲染表格

Roh*_*ith 2 javascript json vue.js vuejs2

我是 vue.js 的新手,我找不到使用 vue 将以下数据渲染到带有行跨度的 html 表中的方法。

{
   "title":"Monthly Sales",
   "monthlySales":[
      {
         "product":"P123",
         "months":[
            {
               "month":"January",
               "unitPrice":"$80",
               "unitsSold":2200
            },
            {
               "month":"February",
               "unitPrice":"$82",
               "unitsSold":1900
            },
            {
               "month":"March",
               "unitPrice":"$81",
               "unitsSold":1800
            }
         ]
      },
      {
         "product":"Q456",
         "months":[
            {
               "month":"January",
               "unitPrice":"$20",
               "unitsSold":200
            },
            {
               "month":"February",
               "unitPrice":"$22",
               "unitsSold":100
            }
         ]
      }
   ]
}
Run Code Online (Sandbox Code Playgroud)

我想创建这样的输出:http : //jsbin.com/hucufezayu/edit?html ,output

在此处输入图片说明

我们如何用这些数据呈现这种表格?

小智 5

这应该可以解决问题:

<template>
  <div id="app">
    <table border="1" style="border-collapse: collapse">
      <thead>
      <th>Product</th>
      <th>Month</th>
      <th>Unit price</th>
      <th>No. sold</th>
      </thead>
      <tbody>
      <template v-for="mSale in salesData.monthlySales">
        <tr v-for="(month, key) in mSale.months">
          <td v-if="key == 0" :rowspan="mSale.months.length">    {{mSale.product}}</td>
          <td>{{month.month}}</td>
          <td>{{month.unitPrice}}</td>
          <td>{{month.unitsSold}}</td>
        </tr>
      </template>
      </tbody>
    </table>
  </div>
</template>

<script>
  export default {
    name: 'app',
    data() {
      return {
        salesData: jsonData
      }
    }
  }
</script>
Run Code Online (Sandbox Code Playgroud)