JIcon.vue 497 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <image
  3. @click="$emit('click')"
  4. v-if="iconUrl"
  5. :style="{
  6. width: width + 'rpx',
  7. height: height + 'rpx',
  8. }"
  9. :src="iconUrl"
  10. mode=""
  11. class="j-icon"
  12. />
  13. </template>
  14. <script>
  15. import { types } from "./icons";
  16. export default {
  17. props: {
  18. type: {
  19. type: String,
  20. required: true,
  21. },
  22. width: [String, Number],
  23. height: [String, Number],
  24. },
  25. computed: {
  26. iconUrl() {
  27. return types[this.type];
  28. },
  29. },
  30. };
  31. </script>