@overcodehungary/overgrid
v2.2.1
Published
<a href="https://overgrid.overcode.hu" target="_blank">Demo and Docs</a>
Maintainers
Readme
OverGrid
Fully customizable, feature rich grid/datatable component for Vue3 projects.
Demo and Docs
Github project
Getting started
npm i @overcodehungary/overgridBasic Usage
<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.
