quill-image-drop-module & quill-image-resize-module 報錯'imports' of undefined的解決方法

1. vue引入組件quill-image-drop-module 與 quill-image-resize-module來調節富文本quill時 會報錯 import underfined等錯誤 
能夠在配置文件 webpack.base.conf 中的module.rules模塊 加入以下代碼:
{
        test: /\.js$/,
        exclude: /node_modules(?!\/quill-image-drop-module|quill-image-resize-module)/,
        loader: 'babel-loader'
      }

在plugins模塊添加:
'window.Quill': 'quill/dist/quill.js',
      'Quill': 'quill/dist/quill.js'
便可。
若找不到文件ImageDrop 可把源碼拷出來單獨寫在文件中便可
相關文章
相關標籤/搜索