Files
barter-app/App.vue
2021-08-04 17:59:36 +08:00

23 lines
292 B
Vue

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