Vue Guideline: Routing — Use navigation guards. Description: Protect routes and handle redirects. Do: beforeEach for auth checks. Don't: Check auth in each component. Good Example: router.beforeEach((to) => {}). Bad Example: Check auth in onMounted. Severity: Medium. Docs: .