Create FlowModel
As a Root Node
Build a FlowModel Instance
Build an instance locally
Save FlowModel
When a built instance needs to be persisted, it can be saved using the save method.
Load FlowModel from Remote
A saved model can be loaded using loadModel. This method will load the entire model tree (including child nodes):
Load or Create FlowModel
If the model exists, it will be loaded; otherwise, it will be created and saved.
Render FlowModel
As a Child Node
When you need to manage the properties and behaviors of multiple sub-components or modules within a model, you need to use SubModel, such as in scenarios like nested layouts, conditional rendering, etc.
Create SubModel
It is recommended to use <AddSubModelButton />
It can automatically handle issues such as adding, binding, and storing child Models. For details, see AddSubModelButton Usage Instructions.
Render SubModel
As a ForkModel
Fork is typically used in scenarios where the same model template needs to be rendered in multiple locations (but with independent states), such as each row in a table.

