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.
我们可以将jade模板编译为匿名函数,并在需要在客户端渲染时调用它。那么混入呢?
混音:
mixin tiny(text) button.tiny #{text}
你可以像这样使用它们:
在某处声明你的 mixin,然后+在需要时调用它并传入参数。
+
mixin person(name) // Declare li.name= name ul +person('cat') // User +person('dog') +person('pig')
在你的例子中
mixin tiny(text) // Declare button.tiny= text +tiny('text') // Use