混帶函式 - Mixins

混帶函式可以在你的模板中新增一個函式,就像是程式中的函式(Function)一樣,

混帶函式讓你能夠重複使用同一個元素,而不需要重複撰寫,你甚至還可以傳遞參數給該函式。

Avane

mixin button(label, theme='default')
    a.btn(class=$theme)= $label


+button('預設按鈕')
+button('主要按鈕', 'primary')
+button('警告按鈕', 'warning')

渲染效果

<a class="btn default">預設按鈕</a>
<a class="btn primary">主要按鈕</a>
<a class="btn warning">警告按鈕</a>

results matching ""

    No results matching ""