header
Description
Optional. Enables a header in the tableUsage
header?: boolean;
Parameters
If the header
value is set to true (default), a header is enabled in the table; if false, no header is displayed.
Example
<script>
import { getData } from "./common/data";
import { Grid } from "wx-svelte-grid";
const { data, columns } = getData();
</script>
<Grid
{data}
{columns}
header={false} />