xinelu-doctor-app/App.vue

29 lines
449 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 09:34:16 +08:00
// page {
// background-color: #F4F5F7;
// }
// .app {
// width: 100%;
// height: 100%;
// text-align: justify;
// color: #000000;
// }
2023-09-19 15:31:55 +08:00
</style>