Files
barter-app/App.vue

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: #f5f5f5;
}
</style>