关于vue.js:Vue-富文本vuequilleditor

3次阅读

共计 369 个字符,预计需要花费 1 分钟才能阅读完成。

  1. 根底装置和应用
    https://awesomejs.dev/for/vue…
  2. 扩大

    • 图片自定义上传模块(避免 base64 数据太长无奈插入数据库):quill-image-extend-module
    • 图片尺寸管制:quill-image-resize-module
  3. 扩大导入的问题

    • Cannot read property ‘imports’ of undefined

    解决形式:webpack 配置

        plugins: [
            new webpack.ProvidePlugin({
                'window.Quill': 'quill/dist/quill.js',
                'Quill': 'quill/dist/quill.js'
            })
        ]
    • Cannot read property ‘register’ of undefined

    解决形式:装置 quill-image-resize-module@1.0.0

正文完
 0