主入口js文件
自己创建的echarts文件
import echarts from 'echarts'
报错
解决方案:
通过 npm 上安装的 ECharts 会放在node_modules
目录下。可以直接在项目代码中 require('echarts')
得到 ECharts。
import echarts from 'echarts'
改为:
let echarts = require('echarts');
2023-11-05 15:45:52
主入口js文件
自己创建的echarts文件
import echarts from 'echarts'
报错
解决方案:
通过 npm 上安装的 ECharts 会放在node_modules
目录下。可以直接在项目代码中 require('echarts')
得到 ECharts。
import echarts from 'echarts'
改为:
let echarts = require('echarts');
下一篇:修改swap分区大小