Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,
div(attr)
会变成
<div attr="attr"></div>
如果我想要
<div attr>,/div>
我应该怎么办?我将 pug 与 vue-loader 一起使用,最好提供精确的配置。
非常感谢。
如果您将空白字符串作为任何属性的值传递,则在浏览器inspect element中该属性仅呈现为attrnot attr=""。
inspect element
attr
attr=""
input(type="checkbox", checked, attr="") label Testing
这是codepen链接