copy-to-clipboard API用法

麻桐
2023-12-01

1.安装API

npm install --save copy-to-clipboard

2.使用API;

import copy from 'copy-to-clipboard';
 
在react中使用案例
handleCopy = () => {
	const text = this.refs.test.innerHTML;
	copy(text);
	Toast.info('复制成功',1)
}

 

 类似资料: