Ext学习之路——Ext.application

Ext.application({
    name: 'MyApp',
    launch: function() {
        Ext.create('Ext.container.Viewport', {
            items: {
                html: 'My App'
            }
        });
    }
});
原文地址:https://www.cnblogs.com/web-record/p/11758666.html