将CMS或社区首页配置为站点首页的方案分享nuxt
与 WebNuxt工程中,如何实现子域名绑定子路由?所述类似,我们只需要在 app/router.options.ts
文件中,完成 /cms
-> /
或者 /ask
-> /
的静态路由修改即可。
// app/router.options.ts 文件,没有请自行建立
import type { RouterOptions } from '@nuxt/schema'
import { cloneDeep } from 'lodash-es'
import { RouteRecordRaw } from 'vue-router'
/**
* 修改路由 path
*/
const editPath = (routes: RouteRecordRaw[], oldPath: string) => {
for (const key in routes) {
if (routes[key].path.includes(oldPath)) {
if (routes[key].path === oldPath) {
// 将 oldPath 路由改为首页
routes[key].path = '/'
routes[key].name = '/'
} else {
// 子路由修改
routes[key].path = routes[key].path.replace(oldPath + '/', '/')
}
}
if (routes[key].children?.length) {
routes[key].children = editPath(routes[key].children!, oldPath)
}
}
return routes
}
// https://router.vuejs.org/api/interfaces/routeroptions.html
export default <RouterOptions>{
routes: (routes) => {
let routesTemp = cloneDeep(routes as Writeable<RouteRecordRaw[]>)
// 对原首页的 path 和 name 进行修改
const oldIndex = getArrayKey(routesTemp, 'path', '/')
routesTemp[oldIndex].path = '/home'
routesTemp[oldIndex].name = '/home'
// 修改所有静态路由数据中的 /cms
routesTemp = editPath(routesTemp, '/cms')
// 社区模块仅需调整第二个参数
// routesTemp = editPath(routesTemp, '/ask')
return routesTemp
},
}
以上代码将路由 /cms
修改为 /
,同时将所有子路由,比如 /cms/info/1
修改为了 /info/1
,/cms/channel/2
修改为 /channel/2
,请注意替换已经对外分发或顶部导航栏的链接地址。
至此,打开站点首页已经是 CMS/社区
首页了。
常见问题
-
点击顶栏的
首页
按钮时,页面可能无法正常跳转,您可以全局搜索{ name: '/' }
替换为{ name: 'cmsIndex' }
。 -
站点顶部导航栏可能还有链接向
/cms
或者/ask
的链接,请于后台->会员管理->会员规则管理
中修改路径路径或链接地址,去掉地址中的cms/
。
请先登录
热门问题
666
学习
感谢分享~
学到了
我新购买安装的工程里面 怎么没有 app/router.options.ts
好的大佬 我瞎了
- 1
前往