From f1e6a20a0c8fea396982241513577d7d9349cecd Mon Sep 17 00:00:00 2001 From: xianfuxing Date: Sat, 4 Aug 2018 11:49:29 +0800 Subject: [PATCH] # rename count-view to logs-view --- src/router/index.js | 2 +- src/views/counter/{count.vue => logs.vue} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/views/counter/{count.vue => logs.vue} (100%) diff --git a/src/router/index.js b/src/router/index.js index 466a00a..ee6a40e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -63,7 +63,7 @@ export const constantRouterMap = [ children: [ { path: 'index', component: () => import('@/views/counter/index'), name: 'statistic', meta: { title: 'statistic' }}, { path: 'device', component: () => import('@/views/counter/device'), name: 'device', meta: { title: 'device' }}, - { path: 'count', component: () => import('@/views/counter/count'), name: 'count', meta: { title: 'count' }} + { path: 'logs', component: () => import('@/views/counter/logs'), name: 'logs', meta: { title: 'logs' }} ] } // { diff --git a/src/views/counter/count.vue b/src/views/counter/logs.vue similarity index 100% rename from src/views/counter/count.vue rename to src/views/counter/logs.vue