【发布时间】:2019-07-18 12:57:00
【问题描述】:
这是没有自动保存的原始代码更漂亮。
const Register = () => (
<div className="container-fluid">
<nav className="row bg-white border-bottom">
<div className="col text-secondary logotype">
logo
</div>
<div className="col-6 text-secondary text-center menu">
register
</div>
<div className="col text-right clock">
</div>
</nav>
</div>
在 vscode 中使用 prettier 自动保存后,效果很奇怪。
您能推荐一下解决方案吗?
const Register = () => ( <
div className = "container-fluid" >
<
nav className = "row bg-white border-bottom" >
<
div className = "col text-secondary logotype" >
logo <
/div> <
div className = "col-6 text-secondary text-center menu" >
register <
/div> <
div className = "col text-right clock" >
<
/div> <
/nav> <
我通过消除 Buefy 解决了这个问题
【问题讨论】: