surprise
2023-12-29 18377dc5d61caf3a6a0835e17015ac2601f8709d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<template>
  <div class="right" id="right">
    <righttop ref="Top" />
    <rightbottom />
  </div>
</template>
 
<style scoped>
.right {
  position: absolute;
  top: 0;/*新增*/
  right: 0;
  height: 100%;
  /* width: 400px; */
}
</style>
    
<script>
import righttop from '@/components/right/right-top'
import rightbottom from '@/components/right/right-bottom'
 
export default {
  name: 'right',
  components: {
    righttop,
    rightbottom,
  },
  data() {
    return {}
  },
  mounted() {},
  methods: {
    closeAll(){
      this.$refs.Top.closeAll();
    }
  },
}
</script>