// router/modules/home.js
const home = [
	{
        //注意:path必须跟pages.json中的地址对应,最前面别忘了加'/'哦
      path: '/pages/index/index',
      aliasPath:'/',  //对于h5端你必须在首页加上aliasPath并设置为/
      name: 'index',
        meta: {
	        title: 'WMS仓库管理系统',
	    },
    },
 //    {
	//     path: '/pages/list/index',
	// 	aliasPath:'/'
 //        name: 'list',
 //        meta: {
	//         title: '列表',
	//     },
	// },
	{
	    path: '/pages/login/index',
		aliasPath:'/'
	    name: 'login',
	    meta: {
	        title: '登录',
	    },
	},
]
export default home