ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 跳转页面后从顶部开始显示 **router.js**中添加 >[success] scrollBehavior() { return { x: 0, y: 0 } } ``` export default new Router({ mode: 'history', base: process.env.BASE_URL, routes: [ { path: '/', name: 'home', component: Home }, { path: "/detail/:id", name: "detail", component: () => import('@/views/detail/detail.vue') } ], scrollBehavior() { return { x: 0, y: 0 } } }) ```