mirror of
https://github.com/bellingcat/osm-search.git
synced 2026-06-12 05:28:32 +03:00
38 lines
904 B
JavaScript
38 lines
904 B
JavaScript
import Vue from "vue";
|
|
import VueRouter from "vue-router";
|
|
import HomeView from "../views/HomeView.vue";
|
|
|
|
Vue.use(VueRouter);
|
|
|
|
const routes = [
|
|
{
|
|
path: "/",
|
|
name: "home",
|
|
component: HomeView,
|
|
},
|
|
{
|
|
path: "/privacy",
|
|
name: "Privacy Policy",
|
|
// route level code-splitting
|
|
// this generates a separate chunk (about.[hash].js) for this route
|
|
// which is lazy-loaded when the route is visited.
|
|
component: () =>
|
|
import(/* webpackChunkName: "about" */ "../views/PrivacyView.vue"),
|
|
},
|
|
{
|
|
path: "/tos",
|
|
name: "Terms of Use",
|
|
// route level code-splitting
|
|
// this generates a separate chunk (about.[hash].js) for this route
|
|
// which is lazy-loaded when the route is visited.
|
|
component: () =>
|
|
import(/* webpackChunkName: "about" */ "../views/TOSView.vue"),
|
|
},
|
|
];
|
|
|
|
const router = new VueRouter({
|
|
routes,
|
|
});
|
|
|
|
export default router;
|