Plugins
Riot provides an easy way to upgrade its components. When a component is created it can be enhanced by the plugins registered via riot.install
.
// riot-observable.js
let id = 0
riot.install(function(component) {
// all components will pass through here
component.uid = id++
})
<!-- my-component.riot -->
<my-component>
<h1>{ uid }</h1>
</my-component>