美文网首页
vue文字点击复制

vue文字点击复制

作者: 徐福瑞 | 来源:发表于2021-02-03 10:20 被阅读0次
 <el-table-column align="left" label="户名" width="150" >
                                        <template slot-scope="scope">
                                            <span class="hand" v-clipboard:copy="scope.row.bank_account_name" v-clipboard:success="onCopy" v-clipboard:error="onError">@{{ scope.row.bank_account_name }}</span>
                                        </template>
                                    </el-table-column>
 onCopy: function(e) {
                    this.$message({
                        message: '复制成功',
                        type: 'success'
                    });
                },
  onError: function(e) {
                this.$message.error('复制失败');
              },

相关文章

网友评论

      本文标题:vue文字点击复制

      本文链接:https://www.haomeiwen.com/subject/dteptltx.html