mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
72 lines
1.4 KiB
Vue
72 lines
1.4 KiB
Vue
<template>
|
|
<div class="icons-container">
|
|
<div class="icons-wrapper">
|
|
<div v-for='item of iconsMap' :key='item' @click='handleClipboard(generateIconCode(item),$event)'>
|
|
<el-tooltip placement="top">
|
|
<div slot="content">
|
|
{{generateIconCode(item)}}
|
|
</div>
|
|
<div class='icon-item'>
|
|
<svg-icon :icon-class="item" />
|
|
<span>{{item}}</span>
|
|
</div>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import icons from './generateIconsView'
|
|
import clipboard from '@/utils/clipboard' // use clipboard directly
|
|
|
|
export default {
|
|
name: 'icons',
|
|
data() {
|
|
return {
|
|
iconsMap: []
|
|
}
|
|
},
|
|
mounted() {
|
|
const iconsMap = icons.state.iconsMap.map((i) => {
|
|
return i.default.id.split('-')[1]
|
|
})
|
|
this.iconsMap = iconsMap
|
|
},
|
|
methods: {
|
|
generateIconCode(symbol) {
|
|
return `<svg-icon icon-class="${symbol}" />`
|
|
},
|
|
handleClipboard(text, event) {
|
|
clipboard(text, event)
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style rel="stylesheet/scss" lang="scss" scoped>
|
|
.icons-container {
|
|
margin: 40px 20px 0;
|
|
overflow: hidden;
|
|
.icons-wrapper {
|
|
margin: 0 auto;
|
|
}
|
|
.icon-item {
|
|
margin: 20px;
|
|
height: 110px;
|
|
text-align: center;
|
|
width: 110px;
|
|
float: left;
|
|
font-size: 30px;
|
|
color: #24292e;
|
|
cursor: pointer;
|
|
}
|
|
span {
|
|
display: block;
|
|
font-size: 24px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
</style>
|