Surpriseplus
2022-11-12 50f52beb0ed100105166f62027cd0b15e6b596dc
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
<template>
  <div class="exportLayerBox"></div>
</template>
 
<script>
export default {
  data() {
    return {};
  },
  methods: {
    changeRowType() {
      this.rowtype = !this.rowtype;
    },
  },
};
</script>
 
<style lang="less">
.exportLayerBox {
  width: 100%;
  height: 100%;
  border: 1px solid gray;
  overflow: hidden;
  margin: 0;
}
</style>