web-apps/vendor/touch/src/Label.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

23 lines
468 B
JavaScript

/**
* A simple label component which allows you to insert content using {@link #html} configuration.
*
* @example miniphone
* Ext.Viewport.add({
* xtype: 'label',
* html: 'My label!'
* });
*/
Ext.define('Ext.Label', {
extend: 'Ext.Component',
xtype: 'label',
config: {
baseCls: Ext.baseCSSPrefix + 'label'
/**
* @cfg {String} html
* The label of this component.
*/
}
});