📜  属性 [livewire] 不存在. - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:56.380000             🧑  作者: Mango

代码示例1
If you are using a recent install of Laravel 8,
you will have Livewire V2.
In this version, Route::livewire() romeved.
 Instead, you specify a normal get() route,
 with the action being the Livewire component class.
 
 
 Route::get('/' , App\Http\Livewire\LandingPage::class);