插件地址:https://marketplace.visualstudio.com/items?itemName=mouday.copy-class-name
复制Vue和React中HTML代码的类名,实现快速复制
使用方式:
选中代码,右键复制类名,再粘贴到文件中即可
示例
html
<div class="test">
<div class="text-children"></div>
</div>
或者
html
<div className="test">
<div className="text-children"></div>
</div>
输出
.test {}
.text-children {}