Added lint and format scripts
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
import { createRouter, createWebHistory } from "vue-router";
|
||||
import Home from "../views/Home.vue";
|
||||
import ReferenceID from "../views/ReferenceID.vue";
|
||||
import InteractionsSankey from "../views/InteractionsSankey.vue";
|
||||
import HomeView from "../views/HomeView.vue";
|
||||
import ReferenSearchByReferenceViewceID from "../views/SearchByReferenceView.vue";
|
||||
import InteractionsFlowView from "../views/InteractionsFlowView.vue";
|
||||
|
||||
const routes = [
|
||||
{
|
||||
path: "/",
|
||||
name: "home",
|
||||
component: Home,
|
||||
component: HomeView,
|
||||
},
|
||||
{
|
||||
path: "/about",
|
||||
@@ -16,13 +16,17 @@ const routes = [
|
||||
// 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/About.vue"),
|
||||
import(/* webpackChunkName: "about" */ "../views/AbouView.vue"),
|
||||
},
|
||||
{ path: "/referenceId", name: "referenceId", component: ReferenceID },
|
||||
{
|
||||
path: "/interactionsSankey",
|
||||
name: "interactionsSankey",
|
||||
component: InteractionsSankey,
|
||||
path: "/referenceId",
|
||||
name: "referenceId",
|
||||
component: ReferenSearchByReferenceViewceID,
|
||||
},
|
||||
{
|
||||
path: "/interactionsFlow",
|
||||
name: "interactionsFlow",
|
||||
component: InteractionsFlowView,
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user