hash和history模式
Posted 啊友的前端历程
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hash和history模式相关的知识,希望对你有一定的参考价值。
new router({
mode:‘history‘,
routes:[]
})
正常a标签hash模式得href=‘#/home‘,
histroy模式用a标签会跳转链接刷新页面,这是因为a标签的默认行为
解决方式:用<router-link to=‘/home‘></router-link>(不管是hash还是history都支持)
<router-link></router-link>的参数
:to=‘index‘
:to=‘{path:‘/home‘,component: home}
tag=‘li‘生成链接导航的标签
<router-link tag="li">
<i></i>
<span>home</span>
</router-link>
链接被激活时的样式
<router-link activeClass=‘activeClass‘></router-link>
new router({
linkActiveClass:‘is-active‘
})
激活样式到对应的链接(当有设置根路由时,点击别的链接,和根目录对应组件相同的那个链接一直未激活状态),加上exact便解决了
<router-link exact></router-link>
切换事件
<router-link event=‘mouseover‘></router-link>
被渲染的组件统一加的样式
<router-view class="center"></router-view>
以上是关于hash和history模式的主要内容,如果未能解决你的问题,请参考以下文章
Vue-router 中hash模式和history模式的关系