之前是:
import { AgGridVue } from 'ag-grid-vue'
现在把这一句删除了
1,在index.template.html中增加
<script src="https://cdn.bootcss.com/ag-grid/19.1.4/ag-grid-community.min.js"></script>
2,在webpack.config.js中增加
externals: {
'vue': 'Vue',
'element': 'element-ui',
'axios': 'axios',
**'ag-grid-vue': 'AgGridVue'**
}
但跑起来报错:
应该怎么处理?主要是为了提高网页加载速度。。。
不知道ag-grid-vue和ag-grid-community的详细用法