guhongwei 2 years ago
parent
commit
936bd9b5b5
2 changed files with 2 additions and 2 deletions
  1. 1 1
      public/index.html
  2. 1 1
      src/router/index.js

+ 1 - 1
public/index.html

@@ -5,7 +5,7 @@
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
     <meta name="viewport" content="width=device-width,initial-scale=1.0">
     <link rel="icon" href="<%= BASE_URL %>favicon.ico">
-    <title><%= htmlWebpackPlugin.options.title %></title>
+    <title>加载中...</title>
   </head>
   <body>
     <noscript>

+ 1 - 1
src/router/index.js

@@ -4,7 +4,7 @@ Vue.use(VueRouter);
 const routes = [
   {
     path: '/',
-    meta: { title: '网站首页' },
+    meta: { title: '网站' },
     component: () => import('../views/homeIndex.vue'),
   },
 ];