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.

icon.vue 373 B

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