vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin

vue项目中引入的dom、css、file、url、vue-style均需要引入对应的加载器,否则无法加载。
相见官网解释https://vue-loader.vuejs.org/migrating.html#a-plugin-is-now-required
具体操作如下:
1、 package.json中引入 这些包:cnpm install file-loader url-loader vue-loader css-loader vue-style-loader –save-dev
2、 webpack.config.js中引入:
const VueLoaderPlugin = require(‘vue-loader/lib/plugin’);
plugins: [
new VueLoaderPlugin()//○1
]
module: {
rules: [
{
test: /.vueKaTeX parse error: Expected 'EOF', got '}' at position 53: …r' }̲, {…/,
loader: ‘url-loader’,
options: {
limit: 10000,
name: ‘[name].[ext]?[hash]’
}
},
{
test: /.css$/,
use: [
‘vue-style-loader’,
‘css-loader’
]
}
]
}//○2
○1Vue Loader v15现在需要一个附带的webpack插件才能正常工作。
○2Vue Loader v15现在使用不同的策略来推断要用于语言块的加载器。

上一篇:Java类访问权限


下一篇:Java语言十五讲(第七讲 InnerClass)