我在标记中有'>'的问题。我有:

<label
    class="custom-control-label"
    for="building{{building.Id}}"
>
 {{ building.City }}, {{ building.Name }}
</label>

如何使标签起始标签'>'与最后一个属性位于同一行?我使用的是Prettier,但是我既无法在其配置中也无法在代码设置中找到解决方案。
<label
   class="custom-control-label"
   for="building{{building.Id}}">
     {{ building.City }}, {{ building.Name }}
</label>

解决方案:
我使用了内置的VS Code格式化程序。

最佳答案

您可以关注this线程。

这是对“更漂亮”的功能要求。

关于visual-studio-code - 结束>在新行中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53366923/

10-10 13:01