DataTables / Vue

Vue plugin for DataTables
MIT License
64 stars 12 forks source link

No style with datatables #28

Open sbellver opened 11 months ago

sbellver commented 11 months ago

When i use the "demo" content i can't get style

<DataTable :data="[[1,2], [3,4]]" class="display">
    <thead>
        <tr>
            <th>A</th>
            <th>B</th>
        </tr>
    </thead>
</DataTable>
import DataTable from 'datatables.net-vue3';
import DataTablesCore from 'datatables.net';

DataTable.use(DataTablesCore);
<style>
@import 'datatables.net-dt';
</style>

As i dont use vite, i try to put the url instad in import:

<style>
@import '../../node_modules/datatables.net-dt/css/jquery.dataTables.min.css';
</style>

No luck

Also i try to copy all css file and puto into