标签

<t:template>

继承模板函数名为template的模板,继承后可以使用<b:block>标签扩展父模板。参考组件继承

  • @param template 要继承的父模板函数名
  • @example
  1. var layout = Intact.Vdt.compile('<div>\
  2. <b:content>content</b:content>\
  3. </div>');
  4. var child = Intact.Vdt.compile('<t:layout>\
  5. <b:content>{parent()} child content</b:content>\
  6. </t:layout>')

<b:block>

使用<t:template>标签继承父模板后,使用<b:block>标签来扩展父模板的内容,并且可以在该标签里, 使用parent()函数引入父模板对应的block的内容。如果不扩展父模板对应的block,则父模板定义的 内容会完整地继承下来。

@since v2.2.0 对组件同样有效

  • @param block 要扩展模板的block名称