Novecane
2025-02-15 d13e470cf0256e3ffbc3b0ad34df27ce0b0b5e5f
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
62
63
64
65
66
67
68
69
70
71
72
73
<template>
  <div class="device-card">
    <img :src="imageUrl" alt="Device Image" />
    <div class="device-info">
      <h3>{{ deviceName }}</h3>
      <p>Model: {{ model }}</p>
      <p>Status: {{ status }}</p>
    </div>
  </div>
</template>
 
<script>
export default {
  name: 'DeviceCard',
  props: {
    imageUrl: {
      type: String,
      required: true
    },
    deviceName: {
      type: String,
      required: true
    },
    model: {
      type: String,
      required: true
    },
    status: {
      type: String,
      required: true
    }
  }
}
</script>
 
<style scoped lang="scss">
.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  width: 270px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
 
  img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
  }
 
  .device-info {
    margin-top: 16px;
  }
 
  h3 {
    margin: 0;
    font-size: 1.5em;
  }
 
  p {
    margin: 8px 0;
    font-size: 1em;
    color: #666;
  }
}
</style>