]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
[FIX] Typo in docs, added missing comma (#1073)
author2malh <42282368+2malh@users.noreply.github.com>
Sat, 14 Aug 2021 22:17:37 +0000 (00:17 +0200)
committerGitHub <noreply@github.com>
Sat, 14 Aug 2021 22:17:37 +0000 (00:17 +0200)
docs/guide/advanced/meta.md

index 869178db0b2ac2ef7b5aae45b942074e670425d3..ec71539fff1a5594c1e040e4fc727d302fb3ddfb 100644 (file)
@@ -21,7 +21,7 @@ const routes = [
       },
       {
         path: ':id',
-        component: PostsDetail
+        component: PostsDetail,
         // anybody can read a post
         meta: { requiresAuth: false }
       }