Built-in Properties
Static Properties
tag
class MyComponent extends Monogatari.Component {
// ...
}
MyComponent.tag = 'my-component';<my-component></my-component>_configuration
class MyComponent extends Monogatari.Component {
static _configuration = {
defaultValue: 'something',
options: {}
};
}_experimental
_priority
engine
Instance Properties
props
state
engine
_parent
Props vs State
Feature
Props
State
Example
Accessing Properties
From Static Methods
From Instance Methods
Related
Last updated
Was this helpful?