最赞回答 / 雨道3436185
const path = require('path')const VueLoaderPlugin = require('vue-loader/lib/plugin')module.exports = {entry: path.join(__dirname, './src/index.js'),output: {filename: 'bundle.js',path: path.join(__dirname, 'dist')},module: {rules: [{test: /\.vue$/,loader:...
2018-12-02