From 3a1fc6e25b64a65edb71f04f9769ca46e0c2ea9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E9=BE=99=E8=BE=89?= <540886643@qq.com> Date: Mon, 17 Jun 2019 10:07:58 +0800 Subject: [PATCH] [chore]fix case sensitive; --- fe/src/comps/{Highlight => highlight}/index.vue | 0 fe/src/plugins/comp.js | 2 +- fe/src/router.js | 6 +++--- fe/src/views/{Mock.vue => mock/index.vue} | 0 fe/src/views/{proxy.vue => proxy/index.vue} | 0 fe/src/views/{Set.vue => set/index.vue} | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename fe/src/comps/{Highlight => highlight}/index.vue (100%) rename fe/src/views/{Mock.vue => mock/index.vue} (100%) rename fe/src/views/{proxy.vue => proxy/index.vue} (100%) rename fe/src/views/{Set.vue => set/index.vue} (100%) 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