24 lines
348 B
Vue
24 lines
348 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
/* #ifdef H5 */
|
|
uni-page-head
|
|
{
|
|
display: none;
|
|
}
|
|
/* #endif */
|
|
</style>
|