我跟随官方网站的例子。
$enqueue->front([
'as' => 'vueJS',
'src' => Helper::assetUrl('/js/vue.js')
]);
我需要在视图中加载,我使用官方页面的示例。
<!DOCTYPE html>
<html>
<head>
<title>Profesores</title>
</head>
<body>
<h1>{{ title }}</h1>
<p>{{ content }}</p>
</body>
</html>
我使用控制器加载视图
public function getProfesores()
{
$profesores = Profesor::all();
return view('@MyPlugin/profesores/lista.twig', [
'title' => 'My Demo',
'content' => 'Congrats on your demo view.',
'data'=> json_response($profesores->toArray())
]);
}
也许它很容易,但它对我不起作用,有人可以帮助我吗?