BernhardtD / vue-sorted-table

A basic sorted table for Vue.js.
MIT License
33 stars 4 forks source link

How to combine 2 tables into 1? #11

Closed NooBiToo closed 3 years ago

NooBiToo commented 4 years ago

hello, thank for your work! How to combine 2 tables into 1?

<div class="table-wrap">
          <sorted-table :values="ammo_data" :sort="list_caliber" class="fixed-table">
            <thead>
            </thead>
            <tbody slot="body" slot-scope="sort" class="tbody">
            </tbody>
          </sorted-table>
        </div>
        <div class="table-wrap">
          <sorted-table :values="ammo_data" :sort="list_caliber" class="main-table tablesorter">
            <thead>
            </thead>
            <tbody slot="body" slot-scope="sort" class="tbody">
            </tbody>
          </sorted-table>
        </div>
BernhardtD commented 4 years ago

I'm sorry for the delay. I don't really understand what you try to do. Do you want to nest the tables?