whychdw
2024-12-02 ec054b1f37e4863074069fe686d82e20c435f9c1
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<script>
import HdwBox from "@/components/HdwBox.vue";
import StateInfo from "@/views/home/StateInfo.vue";
 
export default {
  name: "HomeView",
  components: {StateInfo, HdwBox},
  data() {
    return {}
  },
  methods: {
 
  },
  mounted() {
 
  }
}
</script>
 
<template>
  <div class="home-view-wrapper">
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
    <div class="home-item">
      <state-info></state-info>
    </div>
  </div>
</template>
 
<style scoped lang="scss">
.home-view-wrapper {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  flex-direction: row;
  .home-item {
    padding: 4px;
    width: 25%;
    height: 50%;
  }
}
</style>