From f9c2362cd80ef1c9aa03ba09db9fe62e3756e412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E4=BC=A0=E9=BE=99?= Date: Fri, 29 Apr 2022 20:40:29 +0800 Subject: [PATCH] =?UTF-8?q?mod:=20=E8=A7=84=E8=8C=83=E5=8C=96=E8=B0=83?= =?UTF-8?q?=E6=95=B4.vue=E6=96=87=E4=BB=B6=E5=91=BD=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/routes/modules/example.js | 2 +- .../examples/table/post/{post-create.vue => PostCreate.vue} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/views/examples/table/post/{post-create.vue => PostCreate.vue} (100%) diff --git a/src/router/routes/modules/example.js b/src/router/routes/modules/example.js index e18b3d0..650500a 100644 --- a/src/router/routes/modules/example.js +++ b/src/router/routes/modules/example.js @@ -36,7 +36,7 @@ export default [ { name: 'PostCreate', path: 'post-create', - component: () => import('@/views/examples/table/post/post-create.vue'), + component: () => import('@/views/examples/table/post/PostCreate.vue'), meta: { title: '创建文章', role: ['admin'], diff --git a/src/views/examples/table/post/post-create.vue b/src/views/examples/table/post/PostCreate.vue similarity index 100% rename from src/views/examples/table/post/post-create.vue rename to src/views/examples/table/post/PostCreate.vue