waimai-app/App.vue
2023-04-07 15:44:01 +08:00

34 lines
480 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>
/*每个页面公共css */
@import url('static/iconfont/iconfont.css');
.flex{
display: flex;
}
.flex-center{
display: flex;
align-items: center;
}
.justify-between{
justify-content: space-between;
}
img,image{
max-width: 100%;
}
</style>