Sfoglia il codice sorgente

修改系统名称

tengmingxue 2 anni fa
parent
commit
6571d479cb
3 ha cambiato i file con 0 aggiunte e 57 eliminazioni
  1. BIN
      src/assets/logo.png
  2. BIN
      src/assets/logo1.png
  3. 0 57
      src/router/index copy.js

BIN
src/assets/logo.png


BIN
src/assets/logo1.png


+ 0 - 57
src/router/index copy.js

@@ -1,57 +0,0 @@
-import Vue from 'vue'
-import VueRouter from 'vue-router'
-import Home from '../views/Home.vue'
-import About from '../views/About.vue'
-
-Vue.use(VueRouter)
-
-const routes = [
-  {
-    path: '/',
-    name: 'Home',
-    component: '/dashboard',
-    // redirect: '/dashboard',
-    children:[
-      {
-          path: 'dashboard',
-          name: 'dashboard',
-          component: () => import(/* webpackChunkName: "about" */ '../views/dashboard')
-      },
-      {
-        path: '/pipedma',
-        name: 'pipedma',
-        component: () => import(/* webpackChunkName: "about" */ '../views/pipedma/index.vue')
-      }
-    ]
-  },
-//   {
-//     path: '/about',
-//     name: 'About',
-//     // route level code-splitting
-//     // this generates a separate chunk (about.[hash].js) for this route
-//     // which is lazy-loaded when the route is visited.
-//     component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
-// },
-  {
-    path: '/about',
-    name: 'About',
-    component: About,
-    redirect: '/51word',
-    // route level code-splitting
-    // this generates a separate chunk (about.[hash].js) for this route
-    // which is lazy-loaded when the route is visited.
-    children:[
-      {
-          path: '51word',
-          name: '51word',
-          component: () => import(/* webpackChunkName: "about" */ '../views/51word')
-      },
-    ]
-  }
-]
-
-const router = new VueRouter({
-  routes
-})
-
-export default router