mirror of
https://github.com/bellingcat/osm-search.git
synced 2026-06-12 13:38:31 +03:00
Use Vue router and add links to Privacy/TOS
This commit is contained in:
37
frontend/src/router/index.js
Normal file
37
frontend/src/router/index.js
Normal file
@@ -0,0 +1,37 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user