TS4023: Exported Variable has or is using name from external module but cannot be named
The compiler is failing to figure out the exact shape of detailRoute, because it does not know the shape of Route. Option 1 One way around this is to import Route from its source, thereby providing the information that the compiler needs to determine the shape of detailRoute. import { Route } from “./../node_modules/vue-router/types/router”; export … Read more