mirror of
https://github.com/simon987/sist2.git
synced 2025-04-10 14:06:45 +00:00
37 lines
771 B
TypeScript
37 lines
771 B
TypeScript
import Vue from "vue"
|
|
import VueRouter, {RouteConfig} from "vue-router"
|
|
import StatsPage from "../views/StatsPage.vue"
|
|
import Configuration from "../views/Configuration.vue"
|
|
import SearchPage from "@/views/SearchPage.vue";
|
|
|
|
Vue.use(VueRouter)
|
|
|
|
const routes: Array<RouteConfig> = [
|
|
{
|
|
path: "/",
|
|
name: "SearchPage",
|
|
component: SearchPage
|
|
},
|
|
{
|
|
path: "/stats",
|
|
name: "Stats",
|
|
component: StatsPage
|
|
},
|
|
{
|
|
path: "/config",
|
|
name: "Configuration",
|
|
component: Configuration
|
|
}
|
|
]
|
|
|
|
const router = new VueRouter({
|
|
mode: "hash",
|
|
base: process.env.BASE_URL,
|
|
routes,
|
|
scrollBehavior (to, from, savedPosition) {
|
|
// return desired position
|
|
}
|
|
})
|
|
|
|
export default router
|