首先安装路由npm install vue-router安装完成后,在项目中新建一个router文件夹,一个index.js index.js 中写入 import { createRouter, createWebHashHistory } from vue-routerimport Index from ../views...

- 首先安装路由
npm install vue-router
-
安装完成后,在项目中新建一个router文件夹,一个index.js
-
index.js 中写入
import { createRouter, createWebHashHistory } from 'vue-router'
import Index from '../views/Index.vue'
import ExpertInfo from '../views/ExpertInfo.vue'
import Login from '../views/Login.vue'
const routes = [
{
path: '/',
name: 'Index',
component: Index
},{
path: '/expertList',
name: 'ExpertInfo',
component: ExpertInfo
},{
path: '/login',
name: 'Login',
component: Login
},
]
const router = createRouter({
history: createWebHashHistory(),
routes
})
export default router
4.main.js
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import Vant from 'vant';
import 'vant/lib/index.css';
createApp(App).use(router).use(Vant).mount('#app');
5.App.vue
<template>
<router-view/>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>
6.其他组件中使用router
methods: {
onClickRight() {
this.$router.push('/expertList');
},
onClickLeft() {
this.$router.push('/login')
},
},
暂时记到这里,想起来什么了再补充。
织梦狗教程
本文标题为:vuecli4配置路由 简单记录一下


基础教程推荐
猜你喜欢
- 原生ajax瀑布流demo分享(必看篇) 2023-02-01
- 关于ajax异步访问数据的问题 2023-02-23
- 在IE中为abbr标签加样式 2022-10-16
- JavaScript垃圾回收机制(引用计数,标记清除,性能优 2022-08-31
- ajax实现数据分页查询 2023-01-31
- Unicode中的常用字母小结 2022-09-21
- Ajax提交表单并接收json实例代码 2023-02-13
- AJax 把拿到的后台数据在页面中渲染的实例 2023-02-22
- 纯javascript的ajax实现php异步提交表单的简单实例 2022-12-28
- 解决:layUI数据表格+简单查询 2022-12-16