vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin in your webpack config. 老师这个是怎么回事
vue-loader 升级到15后需要加上这个插件
const VueLoaderPlugin = require('vue-loader/lib/plugin')
配置里面加上这个插件
plugins: [
new VueLoaderPlugin()
]