https://github.com/FancyGrid/awesome-grid

vue

vxe-table

https://vxetable.cn/#/table/start/install

js/ts/setup()/JSX: https://vxetable.cn/#/table/start/quick

support tree table: https://vxetable.cn/#/table/advanced/search

matfish2/vue-tables

https://raw.githubusercontent.com/matfish2/vue-tables/master/dist/vue-tables.min.js

Demo: https://jsfiddle.net/matfish2/jfa5t4sm/ Feature: expand row to multi-rows

jquery

jexcel

https://github.com/paulhodel/jexcel

roadmap: Online work collaboration

standalone

HTML Table

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table

<table>
    <thead>
        <tr>
            <th colspan="2">The table header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>The table body</td>
            <td>with two columns</td>
        </tr>
    </tbody>
</table>

<table>
    <thead>
        <tr>
            <th>Items</th>
            <th scope="col">Expenditure</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th scope="row">Donuts</th>
            <td>3,000</td>
        </tr>
        <tr>
            <th scope="row">Stationery</th>
            <td>18,000</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <th scope="row">Totals</th>
            <td>21,000</td>
        </tr>
    </tfoot>
</table>