路由Vue Router基本用法

路由的作用是根据URL来匹配对应的组件,并且无刷新切换模板的内容。vue.js中,可使用Vue Router来管理路由,让构建单页应用更加简单。

一、效果

二、实现

1.项目中安装Vue Router插件

pnpm install vue-router@lastest

2.main.js

javascript 复制代码
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'

const app = createApp(App);
app.use(router)
app.mount('#app')

3. scr/views/Home.vue

javascript 复制代码
<template>
    <div id="app">
        <h1>hello vite</h1>
    </div>
</template>

src/views/About.vue

javascript 复制代码
<template>
    <div id="app">
        <h1>hello vite about</h1>
    </div>
</template>

src/views/news.vue

javascript 复制代码
<template>
    <div id="app">
        <h1>hello vite news</h1>
    </div>
</template>

4.src/router/index.js:

javascript 复制代码
import { createRouter, createWebHistory } from 'vue-router'

import Home from '../views/Home.vue'
import News from '../views/News.vue'
import About from '../views/About.vue'

const router = createRouter({
  history: createWebHistory(),
  routes: [
    {
      path: '/',
      name: '首页',
      redirect: '/home'
    },
    {
      path: '/home',
      name: '首页',
      component: Home
    },
    {
      path: '/news',
      name: '新闻',
      component: News
    },
    {
      path: '/about',
      name: 'Contact',
      component: About
    }
  ]
})

export default router

​

5.scr/app.vue

javascript 复制代码
<template>
  <h1 class="title">Vue路由测试</h1>
  <div class="container">
    <RouterLink to="/home"  class="item"  >首页</RouterLink>
    <RouterLink to="/home"  class="item">产品</RouterLink>
    <RouterLink :to="{ path: '/news' }" class="item" >新闻</RouterLink>
    <RouterLink :to="{ name: 'Contact' }" class="item" >联系我们</RouterLink>
  </div>
  <div class="routerbox">
    <RouterView></RouterView>
  </div>
</template>

<script  setup >
import { RouterLink, RouterView } from 'vue-router'
import { ref, reactive, watch, onMounted } from 'vue';
</script>

 <style  scoped>
h1 {
  text-align: center;
}
.container {
  margin: 0 auto;
  width: 70%;
  display: flex;
  justify-content: space-evenly; 
} 
  .container>.item {
    flex: 0 0 auto;
    background-color: #df6565;
    color: #fff;
    text-decoration: none;
    width: 100px;
    height: 50px;
    border-radius: 10%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
  }

  .container>.item:hover {
    background-color: #bec9c2;
    color: #ECC980;
  } 
.routerbox {
  margin: 0 auto;
  margin-top: 20px;
  width: 60%;
  height: 200px;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
} 
</style>
相关推荐
江拥羡橙2 小时前
Vue和React怎么选?全面比对
前端·vue.js·react.js
千码君20162 小时前
React Native:快速熟悉react 语法和企业级开发
javascript·react native·react.js·vite·hook
楼田莉子4 小时前
Qt开发学习——QtCreator深度介绍/程序运行/开发规范/对象树
开发语言·前端·c++·qt·学习
暮之沧蓝4 小时前
Vue总结
前端·javascript·vue.js
木易 士心5 小时前
Promise深度解析:前端异步编程的核心
前端·javascript
im_AMBER5 小时前
Web 开发 21
前端·学习
又是忙碌的一天5 小时前
前端学习day01
前端·学习·html
Joker Zxc5 小时前
【前端基础】20、CSS属性——transform、translate、transition
前端·css
excel5 小时前
深入解析 Vue 3 源码:computed 的底层实现原理
前端·javascript·vue.js
大前端helloworld5 小时前
前端梳理体系从常问问题去完善-框架篇(react生态)
前端