react-design icon indicating copy to clipboard operation
react-design copied to clipboard

[147][22-23] 字面量符号错误

Open 0110wdj opened this issue 1 year ago • 0 comments

原文:

ele.innerText = '${content}';
ele.className = 'pri-${content}';

应修改为:

ele.innerText = `${content}`;
ele.className = `pri-${content}`;

0110wdj avatar Mar 24 '25 12:03 0110wdj