为了账号安全,请及时绑定邮箱和手机立即绑定

vue.js中使用router路由设置后children的component失效。

vue.js中使用router路由设置后children的component失效。

饮歌长啸 2018-12-21 19:14:46
import Vue from 'vue'import Router from 'vue-router'import Hello from '@/components/Hello'import Apple from '@/components/apple';import Banbana from '@/components/banbana';import RedApple from '@/components/redapple';Vue.use(Router);export default new Router({  mode: 'history',  routes: [ //路由配置    {      path: '/',      component: Hello    },    {      path: '/apple',      component: Apple,      children: [        {          path: 'red',          component: RedApple        }      ]    },    {      path: '/banbana',      component: Banbana    }  ]})以上代码中 8080/ 是输出组件Hello是正确的 , 8080/apple 输入的是组件apple也是正确的 , 但是输入8080/apple/red 的时候不会跳转到 path:'red'对应的子组件RedApple中。用import RedApple from '../components/redapple'的方法在 components : {RedApple} 注册后在页面中使用 <RedApple></RedApple> 是可以直接输出 RedApple里面的内容的,而使用路由却不行,这是为什么呢?本人刚刚开始学习vue.js不久... 求大佬们指点!谢谢大家!
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 5412 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信