index.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <script setup>
  2. import { computed } from 'vue'
  3. const Props = defineProps({
  4. prefix: {
  5. type: String,
  6. default: 'icon',
  7. },
  8. name: {
  9. type: String,
  10. required: true,
  11. },
  12. color: {
  13. type: String,
  14. default: '#ffffff',
  15. },
  16. size: {
  17. type: Number,
  18. default: 12,
  19. },
  20. rgap: {
  21. type: Number,
  22. default: 0
  23. }
  24. })
  25. const symbolId = computed(() => `#${Props.prefix}-${Props.name}`)
  26. const getStyle = computed(() => {
  27. const { size, rgap } = Props
  28. let pixel = `${size}px`
  29. let styles = {
  30. width: pixel,
  31. height: pixel,
  32. fontSize: pixel,
  33. }
  34. if (rgap) {
  35. styles['paddingRight'] = `${rgap}px`
  36. }
  37. return styles
  38. })
  39. </script>
  40. <template>
  41. <i class="el-iconx" :style="getStyle">
  42. <svg aria-hidden="true">
  43. <use :xlink:href="symbolId" :fill="color" />
  44. </svg>
  45. </i>
  46. </template>
  47. <style lang="scss" scoped>
  48. .el-iconx {
  49. position: relative;
  50. display: inline-flex;
  51. align-items: center;
  52. justify-content: center;
  53. vertical-align: middle;
  54. svg {
  55. width: 1em;
  56. height: 1em;
  57. fill: currentColor;
  58. vertical-align: middle;
  59. }
  60. }
  61. </style>