寻找支持微信小程序到uniapp vue3/vite的转换工具?

新手上路,请多包涵

微信小程序源码如何转换为uniapp vue3/vite

miniprogram-to-uniapp只能转换为v2
希望得到可以转换v3的工具

阅读 591
2 个回答

miniprogram-to-vue3可以吗?

刚刚去看了一下miniprogram-to-vue3
技术架构是:

wxml-compiler:wxml → posthtml-parser → AST → transform → new AST → posthtml-render → vue3/uniapp3 template
wxss-compiler:wxss → postcss-parser → AST → transform → new AST → postcss-render → vue3/uniapp3 style
wxjs-compiler:wxjs → @babel/parser → AST → transform → new AST → @babel/generator → vue3/uniapp3 script

是挺靠谱的,由于js代码的灵活性,很难保证转换后的代码完全满足需求,建议转换后再检查代码的准确性
目前整个项目的转换不成熟,建议进行单个页面转换。

推荐问题