vue-router 动态路由匹配

目录

  • 1. 动态匹配路由的基本用法
  • 2. 路由组件传递参数
    • 2.1 props 的值为布尔类型
    • 2.2 props 的值为对象类型
    • 2.3 props的值为函数类型


1. 动态匹配路由的基本用法

【应用场景】:通过动态路由 参数 的模式进行路由匹配。

var router = new VueRouter({
   
	routes: [
		// 动态路径参数 以冒号开头
		{
    path

你可能感兴趣的:(前端,vue.js,javascript,html)