在某些应用程序中,我有非常小的刀片模板,只能在一个模板中使用。
不幸的是,我仍然需要创建一个单独的文件,例如:
组件jumbotron
:
<div class="jumbotron">
<h1 class="display-4">{{ $title }}</h1>
{{ $slot }}
</div>
然后在我的主要组件中使用:
@component('jumbotron', ['title' => 'Foo'])
Hello World!
@endcomponent
我想找到一种将组件嵌入模板的方法,例如:
@template('jumbotron')
<div class="jumbotron">
<h1 class="display-4">{{ $title }}</h1>
{{ $slot }}
</div>
@endtemplate
@component('jumbotron', ['title' => 'Foo'])
Hello World!
@endcomponent
这有什么可能吗?