2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
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
<template>
  <div class="top">
    <topMain></topMain>
  </div>
</template>
 
<script>
import topMain from "./topViewer/topMain.vue"
export default {
  components: {
    topMain
  },
  data() {
    return {
    }
  },
}
</script>
 
<style lang="less" scoped>
.top{
    width:100%;
    // height:100px;
    position: absolute;
    // background-color:rgba(50, 50, 50, 0.5);
    left: 0px;
    top:0px;
    z-index: 100;
    pointer-events: none;
}
</style>