MainModel.js 255 B

12345678910111213
  1. /**
  2. * This class is the view model for the Main view of the application.
  3. */
  4. Ext.define('saas.view.main.MainModel', {
  5. extend: 'Ext.app.ViewModel',
  6. alias: 'viewmodel.main',
  7. data: {
  8. navWidth: 160,
  9. smallNavWidth: 64,
  10. }
  11. });