我只有一个问题,目前我正在使用更漂亮的格式,它在保存时格式化,但有些事情我不明白,当我格式化空格或缩进时,它们不相等。 vscode 中有我不知道的设置吗?我们如何或设置什么来使其一致?特别是间距。谢谢你。
例如,当我格式化某些以这种方式格式化的按钮时
#示例1
<button
(click)="delete()"
mat-button
color="primary"
[mat-dialog-close]="true"
>
Proceed
</button>
有时当我格式化时它会这样格式化
<button (click)="add()" mat-flat-button style="color: #007dff">
Submit
</button>