Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More β†’
Socket
Sign inDemoInstall
Socket

ag-grid-vue3

Package Overview
Dependencies
Maintainers
0
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-grid-vue3

AG Grid Vue 3 Component

  • 33.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
45K
increased by12.03%
Maintainers
0
Weekly downloads
Β 
Created
Source

Vue3 Data Grid | Vue3 Table

AG Grid Logo
🌐 Website β€’ πŸ“– Documentation β€’ 🏘️ Community

GitHub Release NPM Downloads GitHub Repo stars GitHub forks

Quality Gate Status npms.io Maintenance Score GitHub commit activity Dependents

AG Grid is a fully-featured and highly customizable Vue3 Data Grid. It delivers outstanding performance and has no third-party dependencies.


High Performance Demo

πŸ“– Overview

Table of Contents

AG Grid is available in two versions: Community & Enterprise.

  • ag-grid-community is free, available under the MIT license, and comes with all of the core features expected from a Vue3 Data Grid, including Sorting, Filtering, Pagination, Editing, Custom Components, Theming and more.
  • ag-grid-enterprise is available under a commercial license and comes with advanced features, like Integrated Charting, Row Grouping, Aggregation, Pivoting, Master/Detail, Server-side Row Model, and Exporting in addition to dedicated support from our Engineering team.

Features

FeatureAG Grid CommunityAG Grid Enterprise
Filteringβœ…βœ… (Advanced)
Sortingβœ…βœ…
Cell Editingβœ…βœ…
CSV Exportβœ…βœ…
Drag & Dropβœ…βœ…
Themes and Stylingβœ…βœ…
Selectionβœ…βœ…
Accessibilityβœ…βœ…
Infinite Scrollingβœ…βœ…
Paginationβœ…βœ…
Server-Side Dataβœ…βœ… (Advanced)
Custom Componentsβœ…βœ…
Integrated ChartingβŒβœ…
Range SelectionβŒβœ…
Row Grouping and AggregationβŒβœ…
PivotingβŒβœ…
Excel ExportβŒβœ…
Clipboard OperationsβŒβœ…
Master/DetailβŒβœ…
Tree DataβŒβœ…
Column MenuβŒβœ…
Context MenuβŒβœ…
Tool PanelsβŒβœ…
SupportβŒβœ…

ℹ️ Note:

Visit the Pricing page for a full comparison.

Examples

We've created several demos to showcase AG Grid's rich feature set across different use cases. See them in action below, or interact with them on our Demo page.

🏦 Financial Demo

Financial data example featuring live updates and sparklines:

Finance
Live DemoΒ β€’Β Source Code

πŸ“¦ Inventory Demo

Inventory data example to view and manage products:

Finance
Live DemoΒ β€’Β Source Code

πŸ§‘β€πŸ’Ό HR Demo

HR data example showing hierarchical employee data:

Finance
Live DemoΒ β€’Β Source Code

⚑️ Quick Start

AG Grid is easy to set up - all you need to do is provide your data and define your column structure.

Installation

$ npm install --save ag-grid-vue3

Setup

1. Import the Vue Data Grid

<template></template>

<script>
import { ref } from 'vue';
import { AgGridVue } from "ag-grid-vue3"; // Vue Data Grid Component

export default {
 name: "App",
 components: {
   AgGridVue, // Add Vue Data Grid component
 },
 setup() {},
};
</script>

2. Define Rows and Columns

setup() {
 // Row Data: The data to be displayed.
 const rowData = ref([
   { make: "Tesla", model: "Model Y", price: 64950, electric: true },
   { make: "Ford", model: "F-Series", price: 33850, electric: false },
   { make: "Toyota", model: "Corolla", price: 29600, electric: false },
 ]);

 // Column Definitions: Defines the columns to be displayed.
 const colDefs = ref([
   { field: "make" },
   { field: "model" },
   { field: "price" },
   { field: "electric" }
 ]);

 return {
   rowData,
   colDefs,
 };
},

3. Vue Data Grid Component

Rows and Columns are set as ag-grid-vue component attributes. Grid height is applied through the style attribute.

<template>
 <!-- The AG Grid component -->
 <ag-grid-vue
   :rowData="rowData"
   :columnDefs="colDefs"
   style="height: 500px"
 >
 </ag-grid-vue>
</template>

ℹ️ Note:

For more information on building Data Grids with AG Grid, refer to our Documentation.

Seed Projects

We also provide Seed Projects to help you get started with common configurations:

EnvironmentFrameworkPackagesModules
Create React App (CRA)React LogoPackagesModules
ViteReact LogoPackagesModules
Vite - TypeScriptTypeScript LogoPackagesModules
Webpack 5 - TypeScriptTypeScript LogoPackagesModules
Webpack 5 - Vue3Vue3 LogoPackagesModules
Angular CLIAngular LogoPackagesModules
NuxtVue3 LogoPackagesModules
ViteVue3 LogoPackagesModules

πŸ› οΈ Customisations

AG Grid is fully customisable, both in terms of appearance and functionality. There are many ways in which the grid can be customised and we provide a selection of tools to help create those customisations.

Custom Components

You can create your own Custom Components to customise the behaviour of the grid. For example, you can customise how cells are rendered, how values are edited and also create your own filters.

There are a number of different Component Types that you can provide to the grid, including:

To supply a custom cell renderer and filter components to the Grid, create a direct reference to your component within the gridOptions.columnDefs property:

gridOptions = {
    columnDefs: [
        {
            field: 'country', // The column to add the component to
            cellRenderer: CountryCellRenderer, // Your custom cell component
            filter: CountryFilter, // Your custom filter component
        },
    ],
};

Themes

AG Grid has 4 themes, each available in light & dark modes:

QuartzMaterial
Quartz Theme Material Theme
AlpineBalham
Alpine Theme Balham Theme

Custom Themes

All AG Grid themes can be customised using the Theming API, or you can create a new theme from scratch with the help of our Theme Builder or Figma Design System.

🌍 Community

Tools & Extensions

AG Grid has a large and active community who have created an ecosystem of 3rd party tools, extensions and utilities to help you build your next project with AG Grid, no matter which language or framework you use:

Showcase

AG Grid is used by 100,000's of developers across the world, from almost every industry. Whilst most of these projects are private, we've curated a selection of open-source projects from different industries where household names use AG Grid, including J.P.Morgan, MongoDB and NASA. Visit our Community Showcase page to learn more.

Stargazers

Founded in 2016, AG Grid has seen a steady rise in popularity and is now the market leader for Data Grids:

The AG Grid star history chart

🀝 Support

Enterprise Support

AG Grid Enterprise customers have access to dedicated support via ZenDesk, which is monitored by our engineering teams.

Bug Reports

If you have found a bug, please report it in this repository's issues section.

GitHub Issues

Questions

Look for similar problems on StackOverflow using the ag-grid tag. If nothing seems related, post a new message there. Please do not use GitHub issues to ask questions.

Stack Exchange questions

Contributing

AG Grid is developed by a team of co-located developers in London. If you want to join the team send your application to info@ag-grid.com.

⚠️ License

ag-grid-community is licensed under the MIT license.

ag-grid-enterprise has a Commercial license.

See the LICENSE file for more info.

AG ChartsLogoAG Charts

If you've made it this far, you may be interested in our latest project: AG Charts - The best Vue3 Charting library in the world.

Initially built to power Integrated Charts in AG Grid, we open-sourced this project in 2018. Having seen the steady rise in popularity since then, we have decided to invest in AG Charts with a dedicated Enterprise version (ag-charts-enterprise) in addition to our continued support of ag-charts-community.

Preview of AG Charts Vue3 Charting Examples

Follow us to keep up to date with all the latest news from AG Grid:

Twitter Badge LinkedIn Badge YouTube Badge Blog Badge

Keywords

FAQs

Package last updated on 13 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc