Skip to content

Commit

Permalink
NN-641 remove unused routes
Browse files Browse the repository at this point in the history
  • Loading branch information
anlisha-maharjan committed Jan 2, 2025
1 parent e664282 commit 2c8a54b
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions frontend/src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import { createRouter, createWebHistory } from "vue-router";
import HomeView from "../views/HomeView.vue";
import InputScreen from "../components/home/InputScreen.vue";
import ImportScreen from "../components/home/ImportScreen.vue";
import FileScreen from "../components/home/FileScreen.vue";
import ProteinView from "../views/ProteinView.vue";
import TermView from "../views/TermView.vue";
import CitationView from "../views/CitationView.vue";
Expand Down Expand Up @@ -39,22 +36,7 @@ const routes = [
// which is lazy-loaded when the route is visited.
component: CitationView,
meta: { keepAlive: true }, // added meta to enable keep-alive
},
{
path: "/input",
name: "input",
component: InputScreen,
},
{
path: "/import",
name: "import",
component: ImportScreen,
},
{
path: "/file",
name: "file",
component: FileScreen,
},
}
];

const router = createRouter({
Expand Down

0 comments on commit 2c8a54b

Please sign in to comment.