ag-grid官网:Vue Grid: Custom Components | AG Grid
根据官方文档说的AG Grid no longer supports Vue 2. The last version to support Vue 2 is AG Grid v31.3.,目前只有v31.3.版本支持vue2。
以下是官方给的demo
1、在vue组件中引入使用
<template>
<ag-grid-vue
style="width: 100%; height: 500px;"
class="ag-theme-alpine"
:columnDefs="columnDefs"
:rowData="rowData"
:gridOptions="gridOptions"
@grid-ready="onGridReady"