[Vuejs]-Ziggy conflict with Vue Router

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

Leave a comment