xiejun
2023-09-12 454c4109aa2a8b5bd7340ac0e1cf5baa26fa96e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <i class="action" :title="text">
    <svg width="1em" height="1em" fill="currentColor">
      <use :xlink:href="'#' + type" />
    </svg>
  </i>
</template>
 
<script>
import '../iconfont'
export default {
  name: 'EditorIcon',
  props: ['type', 'text'],
}
</script>