Files
hiddendangerDingtalk/App.vue
T
2025-03-28 09:16:48 +08:00

26 lines
354 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 */
html,body,page{
width: 100%;
height: 100%;
font-size: 28rpx;
}
image{
display: block;
}
</style>