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