正文
官网:点击跳转
- 安装
npm install --save vue-clipboard2
- 引入(我一般在main.js引入,如果仅仅是某一小模块用到,在对应的component引入即可)
import Vue from 'vue' import VueClipboard from 'vue-clipboard2' Vue.use(VueClipboard)
3、使用
// js let message = '拷贝的文本'; this.$copyText(message).then(res => { alert('Copied'); }).catch(err => { alert('Can not copy'); })