DevEco studio 预览器报错 Preview failedUnable to start the previewer. openPreviewerLog to check for details.
有两种原因
1. main_page.json
src 下的 路径是否重复
2. struct 关键字 声明自定义组件 名称是否重复
我自己排查出来的错误 是关键字 struct
重复声明同样的 Index 组件名称。
错误写法
Index.ets
Indexcopy.ets
正确写法
struct 关键字用于描述一个自定义组件,名称与文件名相同!!!
标签:Index,struct,自定义,关键字,previewer,start,details,组件,Preview From: https://blog.csdn.net/m0_74251919/article/details/139543078