我在Vue中引入ueditor时,不加入ueditor.parse.min.js时是好的,但是引入ueditor.parse.min.js后,会报
import './static/UE/ueditor.config.js'
import './static/UE/ueditor.all.min.js'
import './static/UE/lang/zh-cn/zh-cn.js'
**import './static/UE/ueditor.parse.min.js'**
感觉像是ueditor主文件没引入,只引入了配置文件和部分模块
uPase应该是./static/UE/ueditor.parse.min.js导出的一个对象
引入应该是是import uPase from './static/UE/ueditor.parse.min.js';
你可以试一下