app.js 170 字节
Newer Older
G
guoenquan 已提交
1 2 3 4 5 6 7 8 9
export default {
    onCreate() {
        console.info('TestApplication onCreate');

    },
    onDestroy() {
        console.info('TestApplication onDestroy');
    }
};