mahjong_group/App.vue
2025-08-30 17:57:21 +08:00

39 lines
576 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 */
.bg {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
.column {
display: flex;
flex-direction: column;
}
.row {
display: flex;
flex-direction: row;
}
.center {
display: flex;
align-items: center;
justify-content: center;
}
</style>