tengsx
2023-04-06 80eb2e8d0eb78caf0b5d369aba18f99ed1222b97
src/router/page/index.js
@@ -12,6 +12,8 @@
const layout = () => import('../../views/layout/index.vue')
const home = () => import('../../views/home/index.vue')
const home_02 = () => import('../../views/home/index_02.vue')
const home_03 = () => import('../../views/home/index_03.vue')
const routes = [
    {
@@ -32,7 +34,21 @@
                    title: '首页'
                },
                component: home
            }
            },
            {
              path: 'home2',
              meta: {
                  title: '首页'
              },
              component: home_02
            },
            {
            path: 'home3',
            meta: {
                title: '首页'
            },
            component: home_03
        }
        ]
    },