IT:AD:ExtJS
- See also:
Procedure
Ext.application({
name: 'MyApp',
models: ['Post', 'Comment'],
controllers: ['Posts', 'Comments'],
launch: function() {
Ext.create('Ext.container.Viewport', {
items: {
html: 'My App'
}
});
}
});