route.js 1001 Bytes
/*
 * @Date: 2024-08-26 10:42:15
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-09-29 16:11:58
 * @FilePath: /hager/src/route.js
 * @Description: 文件描述
 */
export default [{
  path: '/',
  name: '首页',
  component: () => import('@/views/index'),
  meta: {
    title: '海格电器'
  },
  children: []
}, {
  path: '/product/index',
  name: '二级目录',
  component: () => import('@/views/product/index'),
  meta: {
    title: '海格电器'
  },
  children: []
}, {
  path: '/product/detail',
  name: '详情页',
  component: () => import('@/views/product/detail'),
  meta: {
    title: '海格电器'
  },
  children: []
}, {
  path: '/solution/index',
  name: '解决方案',
  component: () => import('@/views/solution/index'),
  meta: {
    title: '海格电器'
  },
  children: []
}, {
  path: '/solution/detail',
  name: '解决方案详情',
  component: () => import('@/views/solution/detail'),
  meta: {
    title: '海格电器'
  },
  children: []
}]