[Vuejs]-Injection "Symbol(router)" not found

0👍

the solution is to replace "const { useRouter }=require("vue-router");"
with "import { useRouter } from ‘vue-router’"

Leave a comment