xinelu-doctor-app/App.vue
2023-10-23 09:34:16 +08:00

29 lines
449 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>