目标
- 点击首页,则url变为/home,且下面显示的组件是Home组件
- 点击关于,则url变为/About,且下面显示的组件是About组件
步骤
1.配置映射关系
在一个单独的js文件中配置映射关系和模式(hash或history),这里是hash模式。
import { createRouter, createWebHashHistory } from 'vue-router'
import Home from './Home.vue'
import About from './About.vue'
const router = createRouter({
history: createWebHashHistory(),
routes: [{ path: '/home', component: Home },
{path:'/about',component:About}
]
})
export default router
2.导入路由并注册
在main.js中导入并注册。
import { createApp } from 'vue'
import App from './router/App.vue'
import router from './router/index'
const app= createApp(App)
app.use(router)
app.mount('#app')
3.完成首页App.vue
router-link 会显示一个超链接,点了就会让url改,且显示对应组件(如何对应在映射关系里配置了)。 router-view 是对应组件显示的地方。
<template>
<div id="app">
<h2>Appcontent</h2>
<router-link to="/home">首页</router-link>
<hr>
<router-link to="/about">关于</router-link>
<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
可能出现的问题:Component name “About” should always be multi-word
配置规则rule:
"vue/multi-word-component-names": "off"
参考
Vue全家桶 Vue-router的详细介绍 Component name “About“ should always be multi-word.(vue/multi-word-component-names)
|