vue 引入quill-image-resize-module 插件报错
vue 引入quill-image-resize-module 插件报错TypeError: Cannot read properties of undefined (reading ‘imports’)解决方法:编辑 vue.config.js 文件const webpack = require('webpack')module.exports = {configureWebpack: {plu
·
vue 引入quill-image-resize-module 插件报错
TypeError: Cannot read properties of undefined (reading ‘imports’)
解决方法:
编辑 vue.config.js 文件
const webpack = require('webpack')
module.exports = {
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
'window.Quill': 'quill/dist/quill.js',
Quill: 'quill/dist/quill.js'
})
]
}
}
编辑完成,需要重新运行一下。npm run serve。
更多推荐
已为社区贡献12条内容
所有评论(0)