diff --git a/fe/src/comps/Highlight/index.vue b/fe/src/comps/highlight/index.vue similarity index 100% rename from fe/src/comps/Highlight/index.vue rename to fe/src/comps/highlight/index.vue diff --git a/fe/src/plugins/comp.js b/fe/src/plugins/comp.js index d9544e4..46c00ec 100644 --- a/fe/src/plugins/comp.js +++ b/fe/src/plugins/comp.js @@ -1,4 +1,4 @@ import Vue from 'vue'; -import Highlight from '@/comps/Highlight'; +import Highlight from '@/comps/highlight'; Vue.component('mk-highlight', Highlight); diff --git a/fe/src/router.js b/fe/src/router.js index fccb755..16dc05b 100644 --- a/fe/src/router.js +++ b/fe/src/router.js @@ -1,8 +1,8 @@ import Vue from 'vue'; import Router from 'vue-router'; -import Mock from './views/Mock'; -import MockSet from './views/Set'; -import ProxyConfig from './views/Proxy'; +import Mock from './views/mock'; +import MockSet from './views/set'; +import ProxyConfig from './views/proxy'; Vue.use(Router); diff --git a/fe/src/views/Mock.vue b/fe/src/views/mock/index.vue similarity index 100% rename from fe/src/views/Mock.vue rename to fe/src/views/mock/index.vue diff --git a/fe/src/views/proxy.vue b/fe/src/views/proxy/index.vue similarity index 100% rename from fe/src/views/proxy.vue rename to fe/src/views/proxy/index.vue diff --git a/fe/src/views/Set.vue b/fe/src/views/set/index.vue similarity index 100% rename from fe/src/views/Set.vue rename to fe/src/views/set/index.vue