Ag-grid License Key Example Instant

<template> <ag-grid-vue class="ag-theme-alpine" style="height: 500px" :columnDefs="columnDefs" :rowData="rowData" :pivotMode="true"> </ag-grid-vue> </template> <script> import AgGridVue from 'ag-grid-vue3';

:

const rowData = [ athlete: 'Michael Phelps', country: 'US', gold: 8 , athlete: 'Usain Bolt', country: 'Jamaica', gold: 3 ]; ag-grid license key example

const eGridDiv = document.getElementById('myGrid'); new Grid(eGridDiv, gridOptions); import AgGridVue from 'ag-grid-vue3'

const App = () => const columnDefs = [ field: 'athlete' , field: 'country' , field: 'gold', aggFunc: 'sum' // Enterprise aggregation ]; athlete: 'Usain Bolt'