plotpage
This commit is contained in:
parent
98096c81dd
commit
3513a2ab4f
|
@ -2,3 +2,4 @@ build/*.js
|
|||
src/assets
|
||||
public
|
||||
dist
|
||||
src
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<script>
|
||||
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
||||
export default {
|
||||
name: 'Analyze',
|
||||
name: 'Analyze',
|
||||
components: {
|
||||
Circle9
|
||||
}
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue