- <div id="matchlist">
- <table>
- <tr>
- <th v-for="c in matchprops">{{ c.text }}</th>
- </tr>
- <tr v-for="m in matches">
- <td v-for="c in matchprops">{{ m[c.name] }}</td>
- </tr>
- </table>
+ <div id="matchlist" class="clusterize">
+ <div style="position: relative; width: 100%; height: 100%; max-height: 100%" id="scrollArea" class="clusterize-scroll">
+ <table>
+ <tbody id="contentArea" class="clusterize-content">
+ <tr>
+ <th>Icon</th>
+ <th v-for="c in matchprops">{{ c.text }}</th>
+ </tr>
+ <tr v-for="m in matches">
+ <td><img class="championIcon" :src="'http://ddragon.leagueoflegends.com/cdn/8.24.1/img/champion/' + m.championString + '.png'"></img></td>
+ <td v-for="c in matchprops">{{ m[c.name] }}</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>