1export default { 2 onCreate() { 3 console.info("Application onCreate"); 4 }, 5 onDestroy() { 6 console.info("Application onDestroy"); 7 } 8}; 9