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