Files
barter-app/App.vue
2021-08-24 08:53:35 +08:00

23 lines
290 B
Vue

<script>
export default {
onLaunch () {
console.log('App Launch')
},
onShow () {
console.log('App Show')
},
onHide () {
console.log('App Hide')
},
globalData: {
mainColor: "white"
}
}
</script>
<style>
page{
background: #F8F8F8;
}
</style>