Skip to content

Instantly share code, notes, and snippets.

@jgilbertcastro
Created November 15, 2019 15:05
Show Gist options
  • Save jgilbertcastro/eea35969967b2e0c1e09ec3b4c98f96a to your computer and use it in GitHub Desktop.
Save jgilbertcastro/eea35969967b2e0c1e09ec3b4c98f96a to your computer and use it in GitHub Desktop.
import Vue from "vue";
import VueRouter from "vue-router";
import Home from "../views/Home.vue";
import AddPost from "../views/AddPost.vue";
Vue.use(VueRouter);
const routes = [
{
path: "/",
name: "home",
component: Home
},
{
path: "/addpost",
name: "addpost",
component: AddPost
}
];
const router = new VueRouter({
routes
});
export default router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment