已采纳回答 / 海姼
没有装webpack-cli吧,跟老师的版本有区别的,我在学习的时候 vue-loader必须和VueLoaderPlugin搭配使用,否则报错,但是老师那里就没有相关提示
2021-06-30
已采纳回答 / 任性的学渣
如果你换成ES5就知道了this.todos.filter(function(todos) { return completed === todos.completed}
2021-05-24
最赞回答 / 待何时
检查你的vue-loader版本,v15版本要加一个plugins。在webpack.config.js中配置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: pat...
2020-06-26
已采纳回答 / 三天半打渔
// webpack配置文件 const path = require('path'); const htmlWebpackPlugin = require('html-webpack-plugin'); const VueLoaderPlugin = require('vue-loader/lib/plugin'); //引入这行
module.exports = { mode:'none', ...
2019-10-10