tengsx
2023-04-07 cb72b35c41432e705e49a03e75db2199c1e0b934
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
        }
        ]
    },