You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 rivejä
423 B

  1. <template>
  2. <text
  3. @click="click"
  4. :class="['cuIcon-' + type, color ? 'text-' + color : '', shadow ? 'text-shadow' : '', className]"
  5. :style="style"
  6. class="cuIcon"
  7. >
  8. <slot></slot>
  9. </text>
  10. </template>
  11. <script>
  12. export default {
  13. name: 'l-icon',
  14. props: {
  15. color: {},
  16. type: { require: true },
  17. shadow: {}
  18. },
  19. methods: {
  20. click(e) {
  21. this.$emit('click', e)
  22. }
  23. }
  24. }
  25. </script>