我想在行尾添加“>”,而不是在下一行单独添加良性。 我使用Prettier格式化程序,并将VS Code的settings.json放入下一行:
"editor.formatOnSave": true,
"[vue]": {
"editor.formatOnSave": true
},
"prettier.bracketSpacing": true
我喜欢这样格式化Vue文件:
<my-component
att1="ff"
att2="dke">
Text
</mycomponent>
代替此:
<my-component
att1="ff"
att2="dke"
>Text</mycomponent>
我使用"prettier.bracketSpacing": true
作为Prettier的文档说。但是什么也没发生。