index.vue 724 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view :class="'i-class i-icon ' + (type === '' ? '' : 'i-icon-' + type) + ' ' + custom" :style="'font-size: ' + size + 'px; ' + (color ? 'color:' + color : '')"></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {};
  8. },
  9. externalClasses: ['i-class'],
  10. props: {
  11. type: {
  12. type: String,
  13. default: ''
  14. },
  15. custom: {
  16. type: String,
  17. default: ''
  18. },
  19. size: {
  20. type: Number,
  21. default: 14
  22. },
  23. color: {
  24. type: String,
  25. default: ''
  26. }
  27. },
  28. methods: {},
  29. created: function () {}
  30. };
  31. </script>
  32. <style>
  33. @import './index.css';
  34. </style>