r_profiles_list,
]),
})
+
+router.beforeEach(to => {
+ console.log(`➡️ ${to.fullPath}`)
+})
+router.afterEach((to, _from, failure) => {
+ if (failure) {
+ console.log('╳ ', failure)
+ } else {
+ console.log(`✔️ ${to.fullPath}`)
+ }
+})
+
+router.onError(error => {
+ console.error('❌', error)
+})
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
+ "target": "esnext",
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"paths": {