使用带有 ES6 导入的 jQuery 插件

Utilise jQuery plugin with ES6 import

我已经使用 npm 安装了 jquery 插件 summernote,它在我的 node_modules 目录中。

我现在正在尝试使用 summernote 功能,就像我以前在 html.

中加载脚本时一样
import { summernote } from 'summernote';

export default function () {
    const summernote = $('.editor');
    summernote.summernote();
}

我无法通过上面的代码抛出 summernote.summernote is not a function

This module doesn't export anything useful(就像 jQuery 插件包所期望的那样)。

导入的 summernote 未使用,未使用的导入成员使导入成为 noop。

应该是

import 'summernote';