app.js 487 B

123456789101112131415161718192021
  1. /*
  2. * @Description:
  3. * @Author: hy
  4. * @Date: 2019-08-12 17:59:33
  5. * @LastEditTime: 2019-08-14 18:09:30
  6. */
  7. /*
  8. * This file launches the application by asking Ext JS to create
  9. * and launch() the Application class.
  10. */
  11. Ext.application({
  12. extend: 'uas.Application',
  13. name: 'uas',
  14. requires: [
  15. // This will automatically load all classes in the uas namespace
  16. // so that application classes do not need to require each other.
  17. 'uas.Application'
  18. ],
  19. });