This commit is contained in:
Z 2019-09-13 15:48:58 -05:00
parent 98096c81dd
commit 3513a2ab4f
5 changed files with 44 additions and 3 deletions

View File

@ -2,3 +2,4 @@ build/*.js
src/assets
public
dist
src

View File

@ -93,7 +93,7 @@
"chalk": "2.4.2",
"chokidar": "2.1.5",
"connect": "3.6.6",
"eslint-plugin-vue": "5.2.2",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-plugin": "3.2.0",
"lint-staged": "8.1.5",
"mockjs": "1.0.1-beta3",

View File

@ -12,7 +12,7 @@ import chartsRouter from './modules/charts'
import tableRouter from './modules/table'
import nestedRouter from './modules/nested'
/**
/**
* Note: sub-menu only appear when route children.length >= 1
* Detail see: https://panjiachen.github.io/vue-element-admin-site/guide/essentials/router-and-nav.html
*
@ -108,6 +108,20 @@ export const constantRoutes = [
}
]
},
{
path: '/plot',
//hidden: true,
component: Layout,
children: [
{
path: 'plot',
component: () => import('@/views/plot/index'),
name: 'plot',
meta: { title: 'plot' }
}
]
},
{
path: '/documentation',
component: Layout,

View File

@ -25,7 +25,7 @@
<script>
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
export default {
name: 'Analyze',
name: 'Analyze',
components: {
Circle9
}

26
src/views/plot/index.vue Normal file
View File

@ -0,0 +1,26 @@
<template>
<!-- <div class="vue-spinner">
<Circle9 />
<h1>Analyzing....</h1>
</div> -->
<iframe src="http://localhost:808" width=1300 height=600></iframe>
</template>
<script>
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
export default {
name: 'plot',
components: {
Circle9
}
}
</script>
<style scoped>
.vue-spinner{
margin: 100px;
width: 50%;
height: 50%;
/*overflow: hidden;*/
}
</style>