removedhaha
This commit is contained in:
parent
69948997c3
commit
98096c81dd
|
@ -53,6 +53,7 @@
|
|||
"dropzone": "5.5.1",
|
||||
"echarts": "4.2.1",
|
||||
"element-ui": "2.7.0",
|
||||
"eslint": "^6.3.0",
|
||||
"file-saver": "2.0.1",
|
||||
"fuse.js": "3.4.4",
|
||||
"jquery": "^3.4.1",
|
||||
|
@ -92,10 +93,8 @@
|
|||
"chalk": "2.4.2",
|
||||
"chokidar": "2.1.5",
|
||||
"connect": "3.6.6",
|
||||
"eslint": "5.15.3",
|
||||
"eslint-plugin-vue": "5.2.2",
|
||||
"html-webpack-plugin": "3.2.0",
|
||||
"husky": "1.3.1",
|
||||
"lint-staged": "8.1.5",
|
||||
"mockjs": "1.0.1-beta3",
|
||||
"node-sass": "^4.9.0",
|
||||
|
|
|
@ -101,8 +101,8 @@ export const constantRoutes = [
|
|||
component: Layout,
|
||||
children: [
|
||||
{
|
||||
path: 'haha',
|
||||
component: ()=>import('@/views/Analyzing/analyzing'),
|
||||
path: 'analyzing',
|
||||
component: () => import('@/views/Analyzing/analyzing'),
|
||||
name: 'analyze',
|
||||
meta: { title: 'analyzing' }
|
||||
}
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
<!-- <template>
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
|
||||
<span>hhahahahahahah</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
|
||||
data () {
|
||||
return {
|
||||
msg: 'Hey Nic Raboy'
|
||||
|
@ -19,19 +17,19 @@
|
|||
|
||||
<template>
|
||||
<div class="vue-spinner">
|
||||
<Circle9></Circle9>
|
||||
<Circle9 />
|
||||
<h1>Analyzing....</h1>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
||||
export default {
|
||||
name: 'analyze',
|
||||
components: {
|
||||
Circle9
|
||||
}
|
||||
import Circle9 from 'vue-loading-spinner/src/components/Circle9'
|
||||
export default {
|
||||
name: 'Analyze',
|
||||
components: {
|
||||
Circle9
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
|
Loading…
Reference in New Issue