如题,求解答
我全都是--save-dev 安装的,按照上面的提示你这个应该是缺少安装插件才对。https://github.com/bingfengding/todo 你看看对照我的配置以及package.json文件是不是部分插件没安装或版本不对
官网上有解答,加个plugin就好了,https://vue-loader.vuejs.org/guide/#manual-setup
// webpack.config.jsconst VueLoaderPlugin = require('vue-loader/lib/plugin')module.exports = { module: { rules: [ // ... other rules { test: /\.vue$/, loader: 'vue-loader' } ] }, plugins: [ // make sure to include the plugin! new VueLoaderPlugin() ]}
按照这个配置之后解决了这个
```
vue-loader was used without the corresponding plugin.Make sure to include VueLoaderPlugin in your webpack config.
```
问题,但是
```
index.vue?vue&type=style&index=0&lang=css)
Module parse failed: Unexpected token (14:0)
You may need an appropriate loader to handle this file type.
```
仍旧没有解决
是 vue-loader 15.0.0的问题 我也遇到了 换成 14.2.2就好了 ,暂时不知道 15.0.0 应该如何配置
https://github.com/vuejs/vue-loader/blob/master/docs/migrating.md
我遇到的问题和你是一样的,我把rules下面的test属性改成 '/\.vue$/'就能成功跑起来了,你试一下
缺少解析template的loader你看你装了这个没。这么巧居然一起在学。加好友一起研究?