为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

2 回答

老师讲课用的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()

]

}


2 回复 有任何疑惑可以回复我~
#1

qq_曾爱过你_0

非常感谢呀
2019-01-29 回复 有任何疑惑可以回复我~

webpack.config.js的配置文件少配置了一项

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


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这是什么错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信