在 Vue Inspector 中,我实际上收到了消息,但我不确定如何在 Vue 组件上使用它。
请查看图片链接
https://ibb.co/2KTmstS
我正在使用 Inertia 辅助方法并向 Vue 组件发送消息,但没有任何效果。
public function contact_to_project(){
$message = "My message!";
return Inertia('Contact_to_project', [
'message' => $message
]);
}
我的 Vue 组件
{{message}}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
根据您在
vue 组件中的问题,您可以将数据定义为props,然后您可以在template中显示它,如下所示下面的例子: