vue-router怎么不能实现跳转呢

根据文档的例子试了一下vue-router用在项目中,一进入首页的路径是test.administer/index,但是根据路由配置,不是应该进入首页后跳转到Login.vue这个组件的内容吗?我根据以下的配置,当前进入首页后,显示的是App.vue里面的内容。。

index.blade.php:

https://img2.mukewang.com/5c185a380001652504340243.jpg

main.js:

https://img4.mukewang.com/5c185a420001deab04150400.jpg

App.vue:

https://img4.mukewang.com/5c185a4c0001324802390105.jpg

login.vue:

<template>
    <div>loginpage</div>
    </template>


DIEA
浏览 1975回答 1
1回答

料青山看我应如是

你哪里有配置是 首页是 Login component 组件嘛默认需要 /routes:[ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;path:&nbsp;'/',&nbsp;component:&nbsp;Login,&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;children:&nbsp;[ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{&nbsp;path:&nbsp;'homepage',&nbsp;component:&nbsp;Home} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;] &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} &nbsp;&nbsp;&nbsp;&nbsp;]如果你配置成 /index那么对应网址是test.administer/index/#/indextest.administer/index/#/index/homepage另外 app.vue 里面的 hello world 会始终显示的
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript