2***@qq.com
2***@qq.com
  • 发布:2024-06-04 22:44
  • 更新:2024-08-08 22:08
  • 阅读:865

tsconfig.js文件中不允许属性 nativeTags。

分类:uni-app

"vueCompilerOptions": {
"nativeTags": ["block", "component", "template", "slot"]
},
nativeTags报错不允许此属性

2024-06-04 22:44 负责人:无 分享
已邀请:
7***@qq.com

7***@qq.com

查看包版本:@uni-helper/uni-app-types包的版本(在0.5.13版本才开始支持plugin写法)
修改tsconfig文件如下:
// vue 编译器类型,校验标签类型
"vueCompilerOptions": {
// 原配置 experimentalRuntimeMode 现调整为 nativeTags
// "nativeTags": ["block", "component", "template", "slot"] // [!code ++]
"plugins": ["@uni-helper/uni-app-types/volar-plugin"]
},

要回复问题请先登录注册