1. 程式人生 > >[email protected] VueLoaderPlugin無

[email protected] VueLoaderPlugin無

在安裝了Vue外掛之後,發覺編譯不了.vue檔案,但是已經把vue-loader vue-template-compiler 都下載完畢,並且還在webpack.config.js裡面配置了

 {test:/\.vue$/,use:'vue-loader'}

但是還是不行,一直提示:

client:162 ./src/login.vue Module Error (from ./node_modules/[email protected]@vue-loader/lib/index.js): vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config.

後來發現是沒有配置 引包

const { VueLoaderPlugin } = require('vue-loader');

plugins:[
     new VueLoaderPlugin()
	]

配置完畢之後就可以正常的包vue檔案了