使用div包裹内容进行支撑

 <table cellspacing="0">
          <caption>89 HOLLAND ROAD SINGAPORE 275750</caption>

          <tbody>
            <tr>
              <th class="tou">{{i}}</th>
              <td v-for="i in buildinglist[0].cell" :key="i">
                <div>{{i}}</div>
              </td>
            </tr>
            <tr v-for="(a,index) in buildinglist[0].unit" :key="index">
              <th>
                <div>{{a.name}}</div>
              </th>
              <td :class="k" @click="go_unitonfo(k)" v-for="(k,kindex) in a.data" :key="kindex">
                <div>{{k}}</div>
              </td>
            </tr>
          </tbody>

 

相关文章:

  • 2021-08-06
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
  • 2022-02-13
  • 2021-09-26
猜你喜欢
  • 2022-12-23
  • 2021-07-14
  • 2022-12-23
  • 2022-12-23
  • 2023-04-02
相关资源
相似解决方案