removedhaha

This commit is contained in:
Z 2019-09-13 11:20:26 -05:00
parent 69948997c3
commit 98096c81dd
3 changed files with 12 additions and 15 deletions

View File

@ -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",

View File

@ -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' }
}

View File

@ -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>