app.config.compilerOptions.isCustomElement = tag => tag.startsWith('wx-open-launch-weapp')
不起效。
提示错误↓↓↓↓
The compilerOptions
config option is only respected when using a build of Vue.js that includes the runtime compiler (aka "full build"). Since you are using the runtime-only build, compilerOptions
must be passed to @vue/compiler-dom
in the build setup instead.
如何配置编译时,忽略 wx-open-launch-weapp 标签呢???
3 个回复
DCloud_UNI_WZF
vue 文档中有写到该配置选项只在完整的构建版本中生效 (即可以在浏览器中编译模板的独立版 vue.js)。如果你使用的是附带额外构建设置的仅运行时版本,编译器选项必须通过构建工具的配置传入@vue/compiler-dom 以替代。
请确认是否是该问题导致提示错误,如果是的话可参考该配置:
嫣旖雲之逸
已按提供的配置设置了,但无效果。该怎么解决???
package.js:
vite.config.js:
7***@qq.com
同样的情况,有没有解决呀?