赞
踩
安装 vue-clipboard2 插件
npm install --save vue-clipboard2
安装完成后在 main.js 中引入并挂载
import VueClipboard from 'vue-clipboard2'
Vue.use(VueClipboard)
在组件中调用(结合官方 API)
<template>
<view>
<text @tap="copyText">复制</text>
</div>
</template>
<script>
export default {
data() {
return {
text: '要复制的文本'
}
},
methods: {
copyText () {
// #ifdef H5
this.$copyText(this.text).then(
res => {
uni.showToast({
title: '复制成功'
})
}
)
// #endif
// #ifndef H5
uni.setClipboardData({
data: this.text,
success: () => {
uni.showToast({
title: '复制成功'
})
}
})
// #endif
}
}
}
</script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。