'Waiting for update signal from WDS
Solution 1:[1]
This is very weird thing, I also had this error but when I remove "form" tag and replaced it with "div", It worked for me
Solution 2:[2]
This problem is caused by the form. Add $event attribute to your tag form and e.preventDefault(); to your method.
something like:
<form action="" @submit="sendForm($event)">
....
</form>
<script>
sendForm(e) {
e.preventDefault();
console.log("reload form")
}
</script>
Solution 3:[3]
In my case, I had an infinite loop at the start of the app as it had some bugs with authentication checks, preventing the Vue app to start correctly.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Pavan Tank |
| Solution 2 | Constantine |
| Solution 3 | henrykodev |
