mirror of
https://github.com/zwpro/coupons.git
synced 2025-12-10 16:52:48 +00:00
24 lines
336 B
Vue
24 lines
336 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch');
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show');
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide');
|
|
},
|
|
globalData: {
|
|
api: {
|
|
home: 'https://055cfd20-bfe4-4b9a-be9d-f7c2cac59a57.bspapp.com/http/api/home',
|
|
},
|
|
}
|
|
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|