>[success] # 路由重定向
1. **路由重定向**,将指定连接重定向分发给给其他连接,常见的场景一半在路由访问时候我们一般会定义一个首页路由例如`/home`,但大多数情况希望用户输入'/' 时候也可以匹配进入`/home` 首页,可以采用形式
~~~
[ {
path: "/",
name: "home",
component: HomeView,
},
{
path: "/home",
name: "home1",
component: HomeView,
}],
~~~
这么写过于复杂可以采用**路由重定向**形式,但和上面不同是当访问`/` 路径时候浏览器url 实际最后会显示为`/home`
~~~
[
{
path: "/",
redirect: "/home",
},
{
path: "/home",
name: "home1",
component: HomeView,
},
]
~~~
* 也可以采用命名路由指定重定向位置
~~~
const routes = [{ path: '/home', redirect: { name: 'homepage' } }]
~~~
>[danger] ##### 嵌套路由重定向
1. 在写`redirect`的时候,可以省略`component`配置,因为它从来没有被直接访问过,所以没有组件要渲染。唯一的例外是[嵌套路由](https://router.vuejs.org/zh/guide/essentials/nested-routes.html)
2. 嵌套路由为什么要使用重定向 定位到子路由,之前嵌套路由提过可以单独访问父级路径并且也会展示,但大部分情况是想展示的更多是包含子路由的组件,就可以呃使用重定向
~~~
{
path: '/about',
name: 'About',
component: LAYOUT,
redirect: '/about/index',
meta: {
hideChildrenInMenu: true,
icon: 'simple-icons:about-dot-me',
title: t('routes.dashboard.about'),
orderNo: 100000,
},
children: [
{
path: 'index',
name: 'AboutPage',
component: () => import('/@/views/sys/about/index.vue'),
meta: {
title: t('routes.dashboard.about'),
icon: 'simple-icons:about-dot-me',
hideMenu: true,
},
},
],
};
~~~
>[danger] ##### 重定向和路由守卫
在路由重定向的时候路由守卫只会触发最后实际访问的路由,也就是说以最终实际访问的为准
>[danger] ##### 重定向可以是用方法
1. 重定向到相对位置
~~~
const routes = [
{
// 将总是把/users/123/posts重定向到/users/123/profile。
path: '/users/:id/posts',
redirect: to => {
// 该函数接收目标路由作为参数
// 相对位置不以`/`开头
// 或 { path: 'profile'}
return 'profile'
},
},
]
~~~
>[success] # 路由别名
1. `alias` 用来设置路由别名,和重定向不同,当设置重定向时候你最后输入的路径都会变为重定向的目标路由,例如将'/' 重定向到了'/home' 你输入 '/' 在浏览器地址栏最后显示为'/home' ,路由别名就是顾名思义就是两种路由访问都可以进入同一个页面
~~~
{
path: "/home",
alias: "/",
name: "home1",
component: HomeView,
},
~~~
访问'/' 和 '/home' 都可以访问到`HomeView`
2. 数组形式可以为一个路由设置多个别名
3. 可以给嵌套路由设置和上级一样的别名,来达到访问时候可以直接进入子路由,下面案例中`/about` 、`/about/home`、`/about/list` 、`/aa` 路径访问效果都等同 `/about/home`,也可以利用别的解决嵌套路由重定向问题,**注意** 如果别名路径中前缀是`/`以使嵌套路径中的路径成为绝对路径
~~~
{
path: "/about",
name: "about",
component: () =>
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
children: [
{
path: "home",
alias: ["/about", "list",'/aa'],
component: () =>
import(/* webpackChunkName: "about" */ "../views/HomeView.vue"),
},
],
},
~~~
* 其他案例一
~~~
const routes = [
{
path: '/users',
component: UsersLayout,
children: [
// 为这 3 个 URL 呈现 UserList
// - /users
// - /users/list
// - /people
{ path: '', component: UserList, alias: ['/people', 'list'] },
],
},
]
~~~
* 其他案例二,如果你的路由有参数,请确保在任何绝对别名中包含它们,也可像下面案例中将别名设置空这样 `/users/:id/ 空` 就指向了`UserDetails
`
~~~
{
path: '/users/:id',
component: UsersByIdLayout,
children: [
// 为这 3 个 URL 呈现 UserDetails
// - /users/24
// - /users/24/profile
// - /24
{ path: 'profile', component: UserDetails, alias: ['/:id', ''] },
],
},
~~~
- 官网给的工具
- 声明vue2 和 vue3
- 指令速览
- Mustache -- 语法
- v-once -- 只渲染一次
- v-text -- 插入文本
- v-html -- 渲染html
- v-pre -- 显示原始的Mustache标签
- v-cloak -- 遮盖
- v-memo(新)-- 缓存指定值
- v-if/v-show -- 条件渲染
- v-for -- 循环
- v-bind -- 知识
- v-bind -- 修饰符
- v-on -- 点击事件
- v-model -- 双向绑定
- 其他基础知识速览
- 快速使用
- 常识知识点
- key -- 作用 (后续要更新)
- computed -- 计算属性
- watch -- 侦听
- 防抖和节流
- vue3 -- 生命周期
- vue-cli 和 vite 项目搭建方法
- vite -- 导入动态图片
- 组件
- 单文件组件 -- SFC
- 组件通信 -- porp
- 组件通信 -- $emit
- 组件通信 -- Provide / Inject
- 组件通信 -- 全局事件总线mitt库
- 插槽 -- slot
- 整体使用案例
- 动态组件 -- is
- keep-alive
- 分包 -- 异步组价
- mixin -- 混入
- v-model-- 组件
- 使用计算属性
- v-model -- 自定义修饰符
- Suspense -- 实验属性
- Teleport -- 指定挂载
- 组件实例 -- $ 属性
- Option API VS Composition API
- Setup -- 组合API 入口
- api -- reactive
- api -- ref
- 使用ref 和 reactive 场景
- api -- toRefs 和 toRef
- api -- readonly
- 判断性 -- API
- 功能性 -- API
- api -- computed
- api -- $ref 使用
- api -- 生命周期
- Provide 和 Inject
- watch
- watchEffect
- watch vs. watchEffect
- 简单使用composition Api
- 响应性语法糖
- css -- 功能
- 修改css -- :deep() 和 var
- Vue3.2 -- 语法
- ts -- vscode 配置
- attrs/emit/props/expose/slots -- 使用
- props -- defineProps
- props -- defineProps Ts
- emit -- defineEmits
- emit -- defineEmits Ts
- $ref -- defineExpose
- slots/attrs -- useSlots() 和 useAttrs()
- 自定义指令
- Vue -- 插件
- Vue2.x 和 Vue3.x 不同点
- $children -- 移除
- v-for 和 ref
- attribute 强制行为
- 按键修饰符
- v-if 和 v-for 优先级
- 组件使用 v-model -- 非兼容
- 组件
- h -- 函数
- jsx -- 编写
- Vue -- Router
- 了解路由和vue搭配
- vueRouter -- 简单实现
- 安装即使用
- 路由懒加载
- router-view
- router-link
- 路由匹配规则
- 404 页面配置
- 路由嵌套
- 路由组件传参
- 路由重定向和别名
- 路由跳转方法
- 命名路由
- 命名视图
- Composition API
- 路由守卫
- 路由元信息
- 路由其他方法 -- 添加/删除/获取
- 服务器配置映射
- 其他
- Vuex -- 状态管理
- Option Api -- VUEX
- composition API -- VUEX
- module -- VUEX
- 刷新后vuex 数据同步
- 小技巧
- Pinia -- 状态管理
- 开始使用
- pinia -- state
- pinia -- getter
- pinia -- action
- pinia -- 插件 ??
- Vue 源码解读
- 开发感悟
- 练手项目