How to use ag-grid on cdn in the vue project

before:
import {AgGridVue} from "ag-grid-vue"

now delete this sentence
1 and add

to index.template.html.
<script src="https://cdn.bootcss.com/ag-grid/19.1.4/ag-grid-community.min.js"></script>

2, add

to webpack.config.js
externals: {
    "vue": "Vue",
    "element": "element-ui",
    "axios": "axios",
    **"ag-grid-vue": "AgGridVue"**
}

but report an error when running:

what should I do? The main purpose is to improve the loading speed of web pages.
I don"t know the detailed usage of ag-grid-vue and ag-grid-community

Mar.18,2022
Menu