0👍
Open the ziggy.js configuration file in your project
Locate the route method in the configuration object:
const Ziggy = {
route: ...
};
Rename the route method to something else, such as generateRoute:
const Ziggy = {
generateRoute: ...
};
Save and reload the application
- [Vuejs]-Flattening multiple reactive arrays looses the reactivity (Array.flat())
- [Vuejs]-Axe devtool error: <ul> and <ol> must only directly contain <li>, <script> or <template> elements
Source:stackexchange.com