xinelu-doctor-app/App.vue
2023-10-23 10:39:04 +08:00

28 lines
421 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">
@import "uview-ui/index.scss";
/*每个页面公共css */
page {
background-color: #F4F5F7;
}
.app {
width: 100%;
height: 100%;
text-align: justify;
color: #000000;
}
</style>