Bot-CQBOT/q-binding-query/App.vue

28 lines
426 B
Vue
Raw Permalink Normal View History

2024-07-06 01:47:19 +00:00
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
uni-page-head { display: none; }
html,body{
margin: 0;
padding: 0;
}
.mh_liti{
box-shadow: 0 3px 10px 5px rgba(100, 100, 100, 0.2);
border-radius: 10rpx;
}
</style>