npm i @overcodehungary/overgrid
<template>
<OverGrid :config="config"></OverGrid>
</template>
<script setup lang="ts">
import { OverGrid, OverGridConfig } from '@overcodehungary/overgrid';
import '@overcodehungary/overgrid/dist/style.css' // default theme
import './theme.css' // custom theme
const config: OverGridConfig = {
... // your config here
};
</ script>
Check the Docs for more info.