29 lines
492 B
Vue
29 lines
492 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 lang="scss" scoped>
|
|
@import 'common/style/base.css';
|
|
/*每个页面公共css */
|
|
.app-container {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
max-width: 430px;
|
|
margin: 0 auto;
|
|
background-color: var(--bg-light);
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
}
|
|
</style>
|