v1 documentation
See original GitHub issueUntil all the beautiful docs are updated, I figure it would be nice to have a place where the core breaking changes are documented.
So far from looking at commits since mid August, I’ve observed the following:
Moon.component
is nowMoon.extend
- instead of
el
, it isroot
when creating a moon app - instead of the
m-model
attribute, it is now namedm-bind
- Any plugins or other things that access the internal attributes like
$children
now use a version without$
- SVG stuff now just is called
SVG
instead ofisSVG
- To say that an element is text type, it was
TEXT_TYPE
, but now the shorter literal"#text"
is used
There’s a couple things that I don’t quite know about, like dynamic
and functional
when it comes to component things.
What other bumps are there in transitioning?
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (7 by maintainers)
Top Results From Across the Web
V1 Engineering Documentation
These instructions are a collection of knowledge from the V1 Engineering community. They are designed for collaboration in mind and edits are welcome....
Read more >Standard v1.1 | Docs | Twitter Developer Platform
Our free, standard APIs are great for getting started, testing an integration, validating a concept, or creating solutions that complement what you can ......
Read more >Moralis v1: Old Documentation
Old Documentation. You are currently reading our old v1 documentation. For new v2 documentation please visit https://docs.moralis.io.
Read more >Compute Engine API - Documentation - Google Cloud
Retrieves an aggregated list of accelerator types. get, GET /compute/v1/projects/{project}/zones/{zone}/acceleratorTypes/{resourceId}
Read more >Search API v1 documentation - Opendatasoft Help Hub
The available APIs are listed below. API Name, Description. Dataset search API, Search datasets in a catalog. Dataset lookup API, Find a dataset...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
DOM properties are now set with a new directive:
m-dom
. It’s a replacement form-literal:prop.dom
. Also, static elements are marked with a flag along with being hoisted.These both were added in e6208979ff29f45584c92238871b8123c1bf26f8.
In regards to that
.set
change, it should probably be mentioned the old keypath method (i.e.set('obj.prop.nested')
) does not work anymore.