-
Notifications
You must be signed in to change notification settings - Fork 6
6.2 Define
Alex Kit edited this page Mar 29, 2015
·
2 revisions
A component can be created via Javascript with mask.registerHandler, but also directly in the Mask markup.
define COMPONENT_NAME as (WRAPPER_DEFINITION) extends REF_1, REF_2, REF_N {
function PROPERTY (ARGUMENTS) {
// javascript syntax
}
function PROPERTY_N (ARGUMENTS) {
}
slot SLOT_NAME (sender) {
// javascript syntax
}
var SCOPE_NAME = 'FOO'; /* String, Number, Object, Array */
'Any other initial components nodes';
}Childnodes sets nodes the component will have. ❗ If then later the component will have other nodes, this initial nodes will be merged with them.
define COMPONENT_NAME {
}🏁