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 <style> tag inside my .vue file. Doesn't work too
When i use the "demo" content i can't get style
As i dont use vite, i try to put the url instad in import:
No luck
Also i try to copy all css file and puto into <style> tag inside my .vue file. Doesn't work too