一、 npm install vue-loader vue-template-compiler -D
二、在webpack.config.js中配置
1. const VueLoaderPlugin = require('vue-loader/lib/plugin');
plugins: [new VueLoaderPlugin() ],
2. module: {
rules: [{
test: /\.vue$/,
use: ['vue-loader']
}]},
3. resolve: {
alias: {
vue$: 'vue/dist/vue.js'
}
}