BeeIcon.vue 946 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="icon-container" @click="$emit('click')">
  3. <image
  4. :src="src"
  5. :style="{
  6. width: width ? width : size * 2 + 'rpx',
  7. height: width ? height : size * 2 + 'rpx',
  8. }"
  9. v-if="src"
  10. mode=""
  11. />
  12. <tui-icon
  13. v-if="name"
  14. :name="name"
  15. :color="color"
  16. :size="size"
  17. ></tui-icon>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. src: {
  24. type: String,
  25. default: '',
  26. },
  27. name: {
  28. type: String,
  29. default: '',
  30. },
  31. size: {
  32. type: Number,
  33. default: 20,
  34. },
  35. color: {
  36. type: String,
  37. default: '#ccc',
  38. },
  39. width: {
  40. type: String,
  41. default: '',
  42. },
  43. height: {
  44. type: String,
  45. default: '',
  46. },
  47. },
  48. }
  49. </script>
  50. <style lang="less" scoped>
  51. .icon-container {
  52. flex-shrink: 0;
  53. line-height: inherit;
  54. image {
  55. vertical-align: middle;
  56. }
  57. }
  58. </style>