index.vue 1.32 KB
Newer Older
冯超鹏's avatar
冯超鹏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
<template>
  <div class="tab-icon-wrapper">
    <div
      v-for="item of icons"
      :key="item"
      @click="handleClipboard(generateIconCode(item),$event)"
    >
      <el-tooltip placement="top">
        <div slot="content">
          {{ generateIconCode(item) }}
        </div>
        <div class="icon-item">
          <i :class="item" />
          <span>{{ item }}</span>
        </div>
      </el-tooltip>
    </div>
  </div>
</template>

<script>
import clipboard from '@/utils/clipboard';
import icons from './require-icons';

export default {
  name: 'ElementUi',
  data() {
    return {
      icons: icons,
    };
  },
  methods: {
    generateIconCode(symbol) {
      return `<i class="${symbol}"></i>`;
    },
    handleClipboard(text, event) {
      clipboard(text, event);
    },
  },
};
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.tab-icon-wrapper {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  justify-items: stretch;
  justify-content: space-around;
  grid-template-columns: repeat(6, 4fr);

  .icon-item {
    margin: 20px;
    height: 110px;
    text-align: center;
    width: 110px;
    float: left;
    font-size: 30px;
    color: #24292e;
    cursor: pointer;
  }

  span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
  }

  .disabled {
    pointer-events: none;
  }
}
</style>