mirror of
https://github.com/axllent/mailpit.git
synced 2025-12-20 00:12:26 +02:00
38 lines
766 B
JavaScript
38 lines
766 B
JavaScript
import { createRouter, createWebHistory } from "vue-router";
|
|
import MailboxView from "../views/MailboxView.vue";
|
|
import MessageView from "../views/MessageView.vue";
|
|
import NotFoundView from "../views/NotFoundView.vue";
|
|
import SearchView from "../views/SearchView.vue";
|
|
|
|
const d = document.getElementById("app");
|
|
let webroot = "/";
|
|
if (d) {
|
|
webroot = d.dataset.webroot;
|
|
}
|
|
|
|
// paths are relative to webroot
|
|
const router = createRouter({
|
|
history: createWebHistory(webroot),
|
|
routes: [
|
|
{
|
|
path: "/",
|
|
component: MailboxView,
|
|
},
|
|
{
|
|
path: "/search",
|
|
component: SearchView,
|
|
},
|
|
{
|
|
path: "/view/:id",
|
|
component: MessageView,
|
|
},
|
|
{
|
|
path: "/:pathMatch(.*)*",
|
|
name: "NotFound",
|
|
component: NotFoundView,
|
|
},
|
|
],
|
|
});
|
|
|
|
export default router;
|