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", "dropzone": "5.5.1",
"echarts": "4.2.1", "echarts": "4.2.1",
"element-ui": "2.7.0", "element-ui": "2.7.0",
"eslint": "^6.3.0",
"file-saver": "2.0.1", "file-saver": "2.0.1",
"fuse.js": "3.4.4", "fuse.js": "3.4.4",
"jquery": "^3.4.1", "jquery": "^3.4.1",
@ -92,10 +93,8 @@
"chalk": "2.4.2", "chalk": "2.4.2",
"chokidar": "2.1.5", "chokidar": "2.1.5",
"connect": "3.6.6", "connect": "3.6.6",
"eslint": "5.15.3",
"eslint-plugin-vue": "5.2.2", "eslint-plugin-vue": "5.2.2",
"html-webpack-plugin": "3.2.0", "html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.5", "lint-staged": "8.1.5",
"mockjs": "1.0.1-beta3", "mockjs": "1.0.1-beta3",
"node-sass": "^4.9.0", "node-sass": "^4.9.0",

View File

@ -101,8 +101,8 @@ export const constantRoutes = [
component: Layout, component: Layout,
children: [ children: [
{ {
path: 'haha', path: 'analyzing',
component: ()=>import('@/views/Analyzing/analyzing'), component: () => import('@/views/Analyzing/analyzing'),
name: 'analyze', name: 'analyze',
meta: { title: 'analyzing' } meta: { title: 'analyzing' }
} }

View File

@ -1,14 +1,12 @@
<!-- <template> <!-- <template>
<div class="progress"> <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> <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> </div>
</template> </template>
<script> <script>
export default { export default {
data () { data () {
return { return {
msg: 'Hey Nic Raboy' msg: 'Hey Nic Raboy'
@ -19,19 +17,19 @@
<template> <template>
<div class="vue-spinner"> <div class="vue-spinner">
<Circle9></Circle9> <Circle9 />
<h1>Analyzing....</h1> <h1>Analyzing....</h1>
</div> </div>
</template> </template>
<script> <script>
import Circle9 from 'vue-loading-spinner/src/components/Circle9' import Circle9 from 'vue-loading-spinner/src/components/Circle9'
export default { export default {
name: 'analyze', name: 'Analyze',
components: { components: {
Circle9 Circle9
}
} }
}
</script> </script>
<style scoped> <style scoped>