微信小程序源码转换为uniapp vue3/vite源码
简介:
uniapp目前已经支持vue3语法了,对于想将微信小程序代码迁移到uniapp 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
自动转换工具:miniprogram2vue3
posted on 2023-11-04 07:24 jacksplwxy 阅读(292) 评论(0) 编辑 收藏 举报