module is not defined vue怎么解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module is not defined vue怎么解决相关的知识,希望对你有一定的参考价值。
参考技术A 解决:layui.use('layer ', function()
var layer = layui.layer ;
);
先用代码即本回答被提问者采纳
记录vue项目打包后报错exports is not defined
参考技术A 发现不同环境变量下有时候打包正常有时候报错经排查 发现报错的打包的控制台会报如下错误,但是构建正常,没有报红
[BABEL] Note: The code generator has deoptimised the styling of /root/.jenkins/workspace/prod-funeral-affair-front-business-pc/node_modules/element-ui/lib/element-ui.common.js as it exceeds the max of 500KB
解决方法:
在项目的根目录下找到 .babelrc 文件,增加 "compact": false ,如:
"compact": false,
"presets": ["env", "react", "stage-0"],
"plugins": [
"transform-runtime"
]
如果不存在则手动创建该文件,并填写内容如:
"compact": false
以上是关于module is not defined vue怎么解决的主要内容,如果未能解决你的问题,请参考以下文章
使用vue时,报错“exports is not defined”
记录vue项目打包后报错exports is not defined
vue3 编译报 ESLint: ‘defineProps‘ is not defined no-undef 错误问题
vue3 编译报 ESLint: ‘defineProps‘ is not defined no-undef 错误问题