Added lint and format scripts

This commit is contained in:
2023-06-27 13:59:29 -05:00
parent 689554d78a
commit 794fb59842
28 changed files with 2993 additions and 742 deletions

View File

@@ -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,
},
];