home.js
625 Bytes
const Routers = [
{
path: '/home/search',
name: 'GlobalSearch',
meta: {
title: '全局搜索',
isLogin: false
},
component: () => import(/* webpackChunkName: "GlobalSearch" */ '@/views/homeSearch/index.vue') // 全局搜索
},
{
path: '/home/search/result',
name: 'GlobalSearchResult',
meta: {
title: '全局搜索',
isLogin: false
},
component: () => import(/* webpackChunkName: "GlobalSearchResult" */ '@/views/homeSearch/result.vue') // 全局搜索
},
]
export default Routers