Nuxt 3 动态索引页面路由

问题描述 投票:0回答:1

如何让页面索引路由动态化?哪个文件夹结构允许重现此行为? 例如'/'、'/about'、'/register'等仅适用于pages/index.vue项目目录。 我想通过部分滚动创建导航,没有哈希模式 spa。

vue.js nuxt.js nuxt3
1个回答
0
投票

简单写一个全局中间件

export default defineNuxtRouteMiddleware((to) => {
  const first = useState('first', () => true)
  if (!first.value) return
  first.value = false

  const index = ...
  if (to.path !== index) return index
})
© www.soinside.com 2019 - 2024. All rights reserved.