diff options
Diffstat (limited to 'testing-scheduler/ui/src/App.vue')
-rw-r--r-- | testing-scheduler/ui/src/App.vue | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing-scheduler/ui/src/App.vue b/testing-scheduler/ui/src/App.vue new file mode 100644 index 00000000..22632707 --- /dev/null +++ b/testing-scheduler/ui/src/App.vue @@ -0,0 +1,19 @@ +<template>
+ <div id="app">
+ <div class="row border-bottom blue-bg my-page-header">
+ <p id="title">OPNFV Bottlenecks Portal</p>
+ <ul id="intr_table" class="nav navbar-nav">
+ <li><router-link to="/">Test Suites</router-link></li>
+ <li><router-link to="/result">Test Results</router-link></li>
+ <li><router-link to="/report">Reports</router-link></li>
+ <li><router-link to="/environment">Environments</router-link></li>
+ </ul>
+ </div>
+ <router-view/>
+ </div>
+</template>
+<script>
+export default {
+ name: 'App'
+}
+</script>
\ No newline at end of file |