iconGangwei.vue 406 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="gangwei-icon">
  3. <div class="gangwei-icon-content">
  4. <i :style="iconStyle"></i>
  5. <p>{{ des.text }}</p>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. name: "iconGangwei",
  12. props: {
  13. des: {
  14. type: Object,
  15. required: true
  16. }
  17. },
  18. computed: {
  19. iconStyle() {
  20. return `background-image: url(${this.des.icon})`;
  21. }
  22. }
  23. }
  24. </script>