Sencha index.html 간단하게 만들기
index.html: app.js를 호출 app.jsApplication.js를 호출mainView 지정Ext.application({ extend: 'Home.Application', name: 'Home', requires: [ // This will automatically load all classes in the Home namespace // so that application classes do not need to require each other. 'Home.*' ], // The name of the initial view to create. mainView: 'Home.view.main.Main'});Applicat..
2024.12.15