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 setup>
import { getData } from "./common/data";
import { Grid } from "@svar-ui/vue-grid";
const { data, columns } = getData();
</script>
<Grid :data="data" :columns="columns" :footer="true" />