使用了sortablejs,提示找不到依赖jquery'

使用了import Sortable from 'sortablejs'后提示,如果去使用Sortable是不会报错的,求解

This dependency was not found:

  • jquery' in ./node_modules/sortablejs/modular/sortable.complete.esm.js

To install it, you can run: npm install --save jquery'

image.png

阅读 3.5k
1 个回答

找到原因了,
webpack.base.conf.js 配置中写错了,在jquery后面多写了个'
plugins: [

new webpack.ProvidePlugin({
    $: "jquery",
    "window.jQuery": "jquery",
})

]

推荐问题