volunteer-secondary/src/wxcomponents/agent-ui/wd-markdown/copy/index.js

27 lines
423 B
JavaScript
Executable File

Component({
options: {
virtualHost: true,
},
data: {
},
properties: {
dataClipboardText: {
type: String,
value: '',
},
},
methods: {
// 复制到剪贴板
copyClipBoard: function () {
wx.setClipboardData({
data: this.data.dataClipboardText,
// success() {
// wx.getClipboardData({
// success() {},
// });
// },
});
},
},
});