2023-03-01 09:25:05 +00:00

16 lines
650 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 写在前面
本教程将一步一步引导大家实现一个完整的可视化编辑器,每个章节都是在前一章节的基础上进行,后一章节会比前一章节的功能更加完善,旨在帮助大家理解编辑器的各个组成部分的实现思路
[第一章 Hello World](./hello-world.md)
通过搭建一个最简单的编辑器,让大家对编辑器有一个最基本的认识。
[第二章 Runtime](./runtime.md)
通过将组件渲染从编辑器中解耦分离出来,实现编辑器对不同技术栈实现的组件的支持
[第三章 DSL解析渲染](./render.md)
理解DSL并将DSL渲染成对应的组件