xinelu-doctor-app/App.vue

28 lines
421 B
Vue
Raw Normal View History

2023-09-19 15:31:55 +08:00
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
2023-10-23 09:34:16 +08:00
<style lang="scss">
@import "uview-ui/index.scss";
2023-09-19 15:31:55 +08:00
/*每个页面公共css */
2023-10-23 10:39:04 +08:00
page {
background-color: #F4F5F7;
}
2023-10-23 09:34:16 +08:00
2023-10-23 10:39:04 +08:00
.app {
width: 100%;
height: 100%;
text-align: justify;
color: #000000;
}
</style>