这是什么错
老师讲课用的vue-loade是 14 版本。
得看你的 vue-loader 是14版本还是15版本。如果最新的15版本,需要添加
const path = require("path");
// webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
entry: path.join(__dirname, "src/index.js"),
output: {
path: path.join(__dirname, "dist"),
filename: "bundle.js"
},
module: {
rules: [
{
test: /.vue$/,
loader: "vue-loader"
},
{
test: /.css$/,
loader: "css-loader"
},
]
},
plugins: [
new VueLoaderPlugin()
]
}
webpack.config.js的配置文件少配置了一项
{ test: /\.css$/, use: 'css-loader' }