he wei
2023-12-25 e17ea02186df463f5104c67be7f5daf22b5abedd
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
<template>
  <div>
    <svg width="100%" height="100%" viewBox="0 0 800 600">
      <switch-box :type="3" :offset="[60, 40]"></switch-box>
      <switch-box :type="3" :offset="[180, 40]"></switch-box>
      <switch-box :type="3" :offset="[300, 40]"></switch-box>
      <switch-box :type="1" :offset="[20, 180]"></switch-box>
      <switch-box :type="1" :offset="[120, 180]"></switch-box>
      <switch-box :type="1" :offset="[220, 180]"></switch-box>
      <switch-box :type="1" :offset="[320, 180]"></switch-box>
    </svg>
  </div>
</template>
 
<script>
import img from "../images/hr.png";
import SwitchBox from './switchBox';
export default {
  name: "",
 
  data() {
    return {
      img,
    };
  },
  components: {
    SwitchBox,
  },
  methods: {},
 
  mounted() {},
};
</script>
 
<style scoped>
</style>