shunseven
Results
1
comments of
shunseven
可以看下 vue.config.js 是否排除了node_modules 的 js 检测,没有的话,加上可以解决问题 ` chainWebpack(config) { config.module .rule("js") .test(/\.(js|mjs)$/) .exclude.add(/node_modules/) .end() }`