vue-loader插件
- vue-loader需要结合vue-template-compiler一起使用,如果没有结合vue-template-compiler会报错
const Vueloader = require('vue-loader/lib/plugin');
module:{
rules:[
{
test:/\.vue$/,
loader:'vue-loader'
}
]
},
plugins:[
new Vueloader()
]
const Vueloader = require('vue-loader/lib/plugin');
module:{
rules:[
{
test:/\.vue$/,
loader:'vue-loader'
}
]
},
plugins:[
new Vueloader()
]