Skip to content

Commit

Permalink
add cvpm-request
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyaoi committed Dec 5, 2018
1 parent 1afeb76 commit 0800050
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 1,264 deletions.
2 changes: 1 addition & 1 deletion cli/config.go
Expand Up @@ -99,7 +99,7 @@ func validateConfig() {
log.Fatal(err)
}
if !exist {
err := os.Mkdir(cvpmPath, os.ModePerm)
err = os.Mkdir(cvpmPath, os.ModePerm)
if err != nil {
raven.CaptureErrorAndWait(err, nil)
log.Fatal(err)
Expand Down
1 change: 1 addition & 0 deletions dashboard/package.json
Expand Up @@ -19,6 +19,7 @@
"toml": "^2.3.3",
"vue": "^2.5.2",
"vue-i18n": "^8.3.2",
"vue-json-tree-view": "^2.1.4",
"vue-markdown": "^2.2.4",
"vue-router": "^3.0.1",
"vue-socket.io": "^3.0.4",
Expand Down
13 changes: 13 additions & 0 deletions dashboard/src/components/CVPM-Request.vue
@@ -0,0 +1,13 @@
<template>

</template>

<script>
export default {
}
</script>

<style>
</style>
2 changes: 2 additions & 0 deletions dashboard/src/main.js
Expand Up @@ -5,6 +5,7 @@ import App from './App'
import router from './router'
import Vuetify from 'vuetify'
import VueSocketIO from 'vue-socket.io'
import TreeView from "vue-json-tree-view"

import 'vuetify/dist/vuetify.min.css'
import '@/assets/styles/main.css'
Expand All @@ -16,6 +17,7 @@ Vue.use(new VueSocketIO({
connection: 'http://192.168.1.11:10590'
}))
Vue.use(Vuetify)
Vue.use(TreeView)

Vue.config.productionTip = false

Expand Down

0 comments on commit 0800050

Please sign in to comment.