File was processed with these loaders:
程序员文章站
2022-03-07 09:25:51
...
在component中加了一段css代码后 运行报错:
<style lang="stylus" scoped>
.app-container {
padding-top: 40px;
}
</style>
Module parse failed: Unexpected token (18:0)
File was processed with these loaders:
* ./node_modules/aaa@qq.com@vue-loader/lib/index.js
You may need an additional loader to handle the result of these loaders.
以为自己少装插件配置的问题:
一顿重装插件:
cnpm i vue-template-compiler -D
报错!
cnpm i vue-loader-plugin -S
报错!
cnpm i -D postcss-loader
报错!
cnpm i css-loader -D
报错!
cnpm i vue -S
检查配置:webpack.config.js
const VueLoaderPlugin = require('vue-loader/lib/plugin');
module.exports = {
plugins: [//所有 webpack 插件的配置节点
...
new VueLoaderPlugin()
],
}
没有问题
最后回看我写的css 引用了"lang="stylus"" ...手快选了一个。。 然而并没有安装这个配置。
改回
<style lang="scss" scoped>
.app-container {
padding-top: 40px;
}
</style>
运行成功!
上一篇: 【php】开启与关闭调试与报错信息
下一篇: php上传文件时文件名乱码怎么办
推荐阅读
-
Starting MySQL.Manager of pid-file quit without updating file.[FAILED]的解决方法
-
PHP file_get_contents 函数超时的几种解决方法
-
关于PHP5.6+版本“No input file specified”问题的解决
-
javascript类型File的Input按钮功能研究
-
利用html5 file api读取本地文件示例(如图片、PDF等)
-
Node.js中文件操作模块File System的详细介绍
-
图片上传插件ImgUploadJS:用HTML5 File API 实现截图粘贴上传、拖拽上传
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP parse_ini_file函数的应用与扩展操作示例
-
详谈java中File类getPath()、getAbsolutePath()、getCanonical的区别