26 lines
455 B
Vue
26 lines
455 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('Coach App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('Coach App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('Coach App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
page {
|
|
background: #F5F7FA;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
color: #1E1E1E;
|
|
font-size: 14px;
|
|
}
|
|
view, text, button, input {
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|