在创建路由实例对象时,路由规则数组是 routes 而不是 routers!!!!!!!!

//创建路由实例对象
			const router = new VueRouter({
				//routes是路由规则数组
				routes: [
					//每个路由规则都是一个配置对象,其中至少包含 path 和 component 两个属性
					//path 表示当前规则匹配的 hash 地址
					//component 表示当前路由规则对应要展示的组件,接收的是对象
					{path: "/user",component: User},
					{path: "/register",component: Register}
				]
			})
Logo

前往低代码交流专区

更多推荐