Rename posts to Posts

This commit is contained in:
Raymonzut
2020-04-25 12:03:21 +02:00
parent 7b8b4d9a47
commit 12907ea3b7
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'
import posts from '../views/posts.vue'
import Posts from '../views/Posts.vue'
Vue.use(VueRouter)
@@ -14,7 +14,7 @@ const routes = [
{
path: "/posts",
name: "Posts",
component: posts,
component: Posts,
},
]