24 lines
380 B
Vue
24 lines
380 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">
|
||
|
/*每个页面公共css */
|
||
|
@import "@/uni_modules/uview-plus/index.scss";
|
||
|
|
||
|
page{
|
||
|
font-size: 26rpx;
|
||
|
background-color: #eee;
|
||
|
}
|
||
|
</style>
|