Clipboard 复制剪切板

... 2021-7-29 Less than 1 minute

# Clipboard 复制剪切板

Tips

1.0.6+

<div style="width:400px">
  <div style="margin-bottom:10px">
    <el-button @click="copy">直接复制</el-button>
    <el-button @click="textarea=''">清 空</el-button>
  </div>
  <el-input placeholder="内容" v-model="text">
    <template slot="append">
      <el-button @click="copyText" color="primary">复制</el-button>
    </template>
  </el-input>
  <div style="margin-top:10px">
    <el-input type="textarea" v-model="textarea" cols="40" rows="3"></el-input>
  </div>
</div>
<script>
export default {
   data() {
      return {
        text: '',
        textarea: ''
      }
    },
    methods: {
      copyText() {
        this.$Clipboard({
          text: this.text
        }).then(() => {
          this.$message.success('复制成功')
        }).catch(() => {
          this.$message.error('复制失败')
        });
      },
      copy() {
        this.$Clipboard({
          text: '测试==复制至剪切板的文本==测试'
        }).then(() => {
          this.$message.success('复制成功')
        }).catch(() => {
          this.$message.error('复制失败')
        });
      }
    }
}
</script>

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
Expand Copy

# Variables

参数 说明 类型 可选值 默认值
text 复制的文本 String - -
Last update: August 14, 2024 15:38
Contributors: smallwei
您正在浏览基于 Vue 2.x 的 Avue 文档; 点击这里 查看 Vue 3.x 的升级版本