nuxt在组件外部使用$router、$route、$store 发表于 2019-04-09 | 更新于 2023-01-11 nuxt在组件外部使用$router、$route、$store 有些业务需求,需要在客户端根据业务场景需要控制路由或者访问vuex store 1234567891011121314// 客户端根据接口返回条件重定向登陆aysnc function test () { // 判断是浏览器环境使用 if (typeof window === 'undefined') return // 通过window.$nuxt访问router、store const {$router, $store} = window.$nuxt // 根据条件跳转路由 const res = await request($store.state.data) // ... if (res.aaa) { $router.push({name: 'login'}) }}