mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
160 lines
3.2 KiB
Vue
160 lines
3.2 KiB
Vue
<template>
|
||
<div>
|
||
<p>内置的小图标</p>
|
||
<p>如果本身项目有合适的 icon 图标,可以通过全局参数 <router-link class="link" :to="{name: 'StartUse'}">icon</router-link> 替换自带的,可以减少一些体积</p>
|
||
<ul class="icon-list">
|
||
<li v-for="item in list" :key="item.icon" @click="copyEvent(item)" title="点击复制内容">
|
||
<i :class="item.icon"></i>
|
||
<div class="title">{{ item.icon }}</div>
|
||
</li>
|
||
</ul>
|
||
|
||
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
|
||
|
||
<pre>
|
||
<code class="xml">{{ demoCodes[0] }}</code>
|
||
</pre>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import hljs from 'highlight.js'
|
||
import XEClipboard from 'xe-clipboard'
|
||
|
||
export default {
|
||
data () {
|
||
return {
|
||
list: [
|
||
{
|
||
icon: 'vxe-icon--caret-top'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--caret-bottom'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--caret-left'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--caret-right'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--arrow-top'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--arrow-bottom'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--arrow-left'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--arrow-right'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--d-arrow-top'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--d-arrow-bottom'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--d-arrow-left'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--d-arrow-right'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--menu'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--edit-outline'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--more'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--close'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--refresh'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--refresh roll'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--funnel'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--question'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--info'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--warning'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--success'
|
||
},
|
||
{
|
||
icon: 'vxe-icon--error'
|
||
}
|
||
],
|
||
demoCodes: [
|
||
`
|
||
<i class="vxe-icon--caret-top"></i>
|
||
`
|
||
]
|
||
}
|
||
},
|
||
mounted () {
|
||
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
|
||
hljs.highlightBlock(block)
|
||
})
|
||
},
|
||
methods: {
|
||
copyEvent ({ icon }) {
|
||
if (XEClipboard.copy(icon)) {
|
||
this.$XMsg.message({ message: '已复制到剪贴板!', status: 'success' })
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.icon-list {
|
||
font-size: 26px;
|
||
text-align: center;
|
||
border-top: 1px solid #eee;
|
||
border-left: 1px solid #eee;
|
||
overflow: hidden;
|
||
margin: 0;
|
||
&:after {
|
||
content: "";
|
||
clear: both;
|
||
}
|
||
& > li {
|
||
float: left;
|
||
height: 100px;
|
||
width: 16.66%;
|
||
border-right: 1px solid #eee;
|
||
border-bottom: 1px solid #eee;
|
||
cursor: pointer;
|
||
padding-top: 10px;
|
||
& > i {
|
||
color: #606266;
|
||
border-color: #606266;
|
||
}
|
||
&:hover {
|
||
& > i {
|
||
color: #5CB6FF;
|
||
border-color: #5CB6FF;
|
||
}
|
||
}
|
||
.title {
|
||
font-size: 14px;
|
||
margin-top: 10px;
|
||
}
|
||
}
|
||
}
|
||
</style>
|