diff --git a/vue/src/router/index.js b/vue/src/router/index.js index a410e6a..9a838a5 100644 --- a/vue/src/router/index.js +++ b/vue/src/router/index.js @@ -6,6 +6,7 @@ import Profile from '../system/Profile.vue' import Display from '../system/GraphDemo.vue' import Builder from '../system/GraphBuilder.vue' import Style from '../system/GraphStyle.vue' +import Data from '../system/KGData.vue' import QA from '../system/GraphQA.vue' const routes = [ { @@ -59,7 +60,14 @@ const routes = [ path: '/kg-qa', name: 'QA', component: QA - } + }, + + { + path: '/kg-data', + name: 'Data', + component: Data + }, + ] const router = createRouter({