skip to Main Content

livewire work and render the component with data successfully , but wire:mode or wire:click button
not work .
I read all documents and questions about why wire not working in web
I do all thing .
even a simple html like below not work (all elements in one div),

<html>

<head>

   @livewireStyles
</head>

<body>
@livewire('orderbuybuy')

@livewireScreipts

</body>

</html>

2

Answers


  1. Check the spelling of @livewireScripts

    Login or Signup to reply.
  2. <html>
    
    <head>
    
       @livewireStyles
    </head>
    
    <body>
    @livewire('orderbuybuy')
    
    @livewireScripts
    
    </body>
    
    </html>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search