elementUI el-table 单元格实现复制
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
1、效果图:
2、在项目utils目录下创建index.js
然后创建如下拷贝方法
export function copyText(copytext) {
const text = document.createElement('input'); // 创建节点
text.setAttribute('readonly', 'readonly');
text.value = copytext; // 赋值
document.body.appendChild(text); // 插入节点
text.setSelectionRange(0, text.value.length);
text.select(); // 选中节点
document.execCommand('copy'); // 执行浏览器复制方法
if (document.body.removeChild(text)) {
this.$message({ type: 'success', message: '复制成功' })
} else {
this.$message({ type: 'error', message: '复制失败' })
}
}
3、在main.js中引入该方法,并挂载
import {isAuth, hasRole, copyText} from '@/utils'
Vue.prototype.copyText = copyText
4、在el-table-cloumn中使用
<el-table-column prop="purchaseOrderNo" header-align="center" align="center" label="采购订单号" width="140" show-overflow-tooltip>
<template slot-scope="scope">
<el-tag type="success" size="mini" @click="copyText(scope.row.purchaseOrderNo)" >
复制
</el-tag>
{{ scope.row.purchaseOrderNo}}
</template>
</el-table-column>
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献8条内容
所有评论(0)