<div class="do-mod-search">
  <div class="tabbar">
    <span class="item active">我的音乐</span>
    <span class="item">汪苏泷 <i class="do-icon-close"></i></span>
  </div>

  <div class="table">
    <table>
      <thead>
        <tr>
          <th>&nbsp;</th>
          <th>歌名</th>
          <th>歌手</th>
          <th>专辑</th>
          <th>时长</th>
        </tr>
      </thead>
      <tbody>
        <tr
          :class="{active: it.id === curr.id}"
          :for="it in list"
          :dblclick="play(it, $index)">
          <td><i class="s-icon-music"></i></td>
          <td :text="it.title"></td>
          <td class="ac" :text="it.artist"></td>
          <td class="ac" :text="it.album"></td>
          <td class="ac" :text="it.duration | time"></td>
        </tr>
      </tbody>
    </table>
  </div>
</div>