我是LiveWire的新手。我认为我做的一切都是正确的。(根据文档。)为什么我没有得到互动?谢谢。
---欢迎,刀锋---
<html>
<head>
<title>Livewire</title>
@livewireStyles
</head>
<body>
@livewire('hello-world')
@livewireScripts
</body>
</html>
---控制器---
class HelloWorld extends Component
{
public $name = 'Ugur';
public function render()
{
return view('livewire.hello-world');
}
}
---你好--世界.刀锋---
<div>
<input wire:model="name" type="text">
Hello {{ $name }}
</div>
When the input value changes, the value on the side does not change.
1条答案
按热度按时间wgx48brx1#
已解决!
我变了;
文件
和
config/livewire.php
Source