2017-10-28 15:13:00 +00:00
|
|
|
|
|
|
|
module.exports = new Class
|
|
|
|
({
|
|
|
|
Extends: Vn.Component
|
|
|
|
,Tag: 'htk-step'
|
|
|
|
,Properties:
|
|
|
|
{
|
|
|
|
name: {
|
|
|
|
type: String
|
|
|
|
,value: null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,appendChild: function (child)
|
|
|
|
{
|
|
|
|
this._node.appendChild (child);
|
|
|
|
}
|
|
|
|
,render: function ()
|
|
|
|
{
|
2017-11-22 12:25:19 +00:00
|
|
|
this.createRoot ('div');
|
2017-10-28 15:13:00 +00:00
|
|
|
}
|
|
|
|
});
|