Skip to content

Commit

Permalink
The neo.mjs story: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiu committed Nov 22, 2019
1 parent bda6c17 commit 2b17fa7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/VISION.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ It is kind of obvious, that you can easily manipulate JS objects & arrays any wa
No more scoping issues.<br/>
You are in full control when, what and how to change your vdom.

The neo.mjs vdom structures are not "templates", which get consumed when rendering or mounting a component,
but persist throughout the full component lifecycle. Meaning: you can easily change them the same way at
any given point.
The neo.mjs vdom structures are not "templates", which get consumed when rendering or mounting a component,<br/>
but persist throughout the full component lifecycle.<br/>
Meaning: you can easily change them the same way at any given point.

Especially when creating big apps, many framework fail to provide you with a robust and solid base structure,
on which you can build complex UI architectures. Extensibility is another huge issue.
Expand All @@ -69,6 +69,8 @@ const myButton = Neo.create(Button, {text: "Hello"});
myButton.text = "World";
```

For more input on what you can do using neo.mjs, please take a look at the guides inside the docs app.

# The neo.mjs vision

content coming soon!
Expand Down

0 comments on commit 2b17fa7

Please sign in to comment.