Options - Mobius1/Vanilla-DataTables GitHub Wiki

Vanilla-DataTables can be initialised with custom options passed as the second parameter of the constructor.

var options = {
    searchable: true,
    perPage: 10,
   ...
};
var dataTable = new DataTable(myTable, options);