InspectionCleaning/pages/home/index.vue

24 lines
404 B
Vue
Raw Normal View History

2025-04-10 09:12:18 +08:00
<template>
<view class="content"> </view>
</template>
<script>
export default {
data() {
2025-04-10 16:49:39 +08:00
return {};
2025-04-10 09:12:18 +08:00
},
mounted() {
// console.log("%c%s", "color:red", "mounted--");
},
2025-04-10 16:49:39 +08:00
onLoad() {},
2025-04-10 09:12:18 +08:00
methods: {},
};
</script>
<style lang="scss" scoped>
.content {
2025-04-10 16:49:39 +08:00
height: 100vh; // 确保容器有明确高度
// background-color: skyblue;
2025-04-10 09:12:18 +08:00
overflow: hidden;
padding-bottom: 100rpx;
}
</style>