【发布时间】:2018-08-26 10:18:47
【问题描述】:
我在 Laravel 刀片模板中使用多个 Vue 组件,如下所示
<div id="app">
<user-list></user-list>
<first-component></first-component>
<seconde-component>
<h1>{{ $name }}</h1>
<p>{{ $bio }}</p>
</seconde-component>
</div>
我想知道这样使用 Vue 是否是最佳实践?如果 不是,在 Laravel 中使用 Vue 组件的最佳实践是什么?
【问题讨论】: