webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin
npm run dev报以下错误:webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin解决方案(官方):现在你需要一个插件Vue Loader v15 现在需要配合一个 webpack 插件才能正确使用:// webpack.con...
·
npm run dev
- 报以下错误:
webpack vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin
解决方案(官方):
现在你需要一个插件
Vue Loader v15 现在需要配合一个 webpack 插件才能正确使用:
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
// ...
plugins: [
new VueLoaderPlugin()
]
}
更多推荐
已为社区贡献2条内容
所有评论(0)