路由 router-link的使用

Posted 周森

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了路由 router-link的使用相关的知识,希望对你有一定的参考价值。

main.js

import Vue from ‘vue‘
import App from ‘./App‘
import VueRouter from ‘vue-router‘
import footer from ‘./components/footer.vue‘
import header from ‘./components/header.vue‘
import body from ‘./components/body.vue‘
Vue.use(VueRouter);

let router=new VueRouter({
routes:[
{name:‘footer‘,path:‘/footer‘,component:footer},
{name:‘header‘,path:‘/header‘,component:header},
{name:‘body‘,path:‘/body‘,component:body}
]
})
/* eslint-disable no-new */
new Vue({
el: ‘#app‘,
router,
template: ‘<App/>‘,
components: { App }
})

 

app.vue

<template>
<div>
<!--留坑 非常重要-->
<router-view></router-view>
<router-link :to="{name:‘header‘}">header</router-link>
<router-link :to="{name:‘footer‘}">footer</router-link>
<router-link :to="{name:‘body‘}">body</router-link>
</div>
</template>

<script>

export default{
data(){
return{
msg:"这是一个aaa"
}
},
methods:{

}
}

</script>

<style>

</style>

以上是关于路由 router-link的使用的主要内容,如果未能解决你的问题,请参考以下文章

router-link 路由跳转的使用

v-btn 内部路由和使用 router-link 之间的区别

Vue路由<router-link>属性的使用

router-link路由传参

为啥vue中子路由点击router-link只能刷新一次子页面?

Vue路由实现页面跳转的两种方式(router-link和JS)