| 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
 | | <template> |  |   <div class="plan_wrap"> |  |     <div class="plan" :style="{ |  |       background: 'linear-gradient(to right, #1e3c48 0%, #6feef1 100%)', |  |       width: `${rate}%` |  |     }"></div> |  |   </div> |  | </template> |  |   |  | <script setup> |  | const props = defineProps({ |  |   rate: Number, |  |   color: String |  | }) |  | </script> |  |   |  | <style lang="scss" scoped> |  | .plan_wrap{ |  |   width: 100%; |  |   background-color: #172630; |  |   padding: 4px; |  |   height: 18px; |  |   .plan{ |  |     height: 10px; |  |   } |  | } |  | </style> | 
 |