Adding Sankey for UDG

This commit is contained in:
2023-06-26 22:03:41 -05:00
parent 1124aa1b64
commit 689554d78a
6 changed files with 1311 additions and 19 deletions

View File

@@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from "vue-router";
import Home from "../views/Home.vue";
import ReferenceID from "../views/ReferenceID.vue";
import InteractionsSankey from "../views/InteractionsSankey.vue";
const routes = [
{
@@ -18,6 +19,11 @@ const routes = [
import(/* webpackChunkName: "about" */ "../views/About.vue"),
},
{ path: "/referenceId", name: "referenceId", component: ReferenceID },
{
path: "/interactionsSankey",
name: "interactionsSankey",
component: InteractionsSankey,
},
];
const router = createRouter({