当我从 node_modules 导入时未定义羽毛笔

Quill is not defined when i import from node_modules

我想在我的项目中使用 quill(laravel)

当我需要来自 cdn 的 quill 时我的代码工作

但是当从 node_modules 导入时我得到了这个错误:

Quill is not defined 

我能做什么?

我的代码:

import 'quill/quill';
var quill = new Quill('#editor', {
    theme: 'snow',
});

您需要使用 ES6 语法或 CommonJS require 语法导入 Quill。

换行:

import 'quill/quill';

转 ES6 语法:

import Quill from 'quill';

或带有 Require

的 CommonJS
const Quill = require("quill");

让整个事情变成这样:

const Quill = require("quill");
var quill = new Quill('#editor', {
    theme: 'snow',
});