hookehuyr

fix 细节调整

1 +<template>
2 + <div></div>
3 +</template>
4 +
5 +<script setup>
6 +import { ref, reactive, onMounted } from 'vue'
7 +const props = defineProps({
8 + type: String
9 +})
10 +
11 + onMounted(() => {
12 +
13 + })
14 +</script>
15 +
16 +<script>
17 +export default {
18 + data () {
19 + return {
20 +
21 + }
22 + },
23 + mounted () {
24 +
25 + },
26 + methods: {
27 +
28 + }
29 +}
30 +</script>
31 +
32 +<style lang="less" scoped>
33 +</style>
...\ No newline at end of file ...\ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
11 </div> 11 </div>
12 </div> 12 </div>
13 </div> 13 </div>
14 - 14 + <div class="van-safe-area-bottom"></div>
15 </template> 15 </template>
16 16
17 <script setup> 17 <script setup>
......