如何在uni-app和VUE3开发中使用Vue-router呢?
时间: 2023-06-12 16:06:49 浏览: 153
基于uni-app开发的新闻和资讯类App模板
5星 · 资源好评率100%
在uni-app和VUE3开发中使用Vue-router,可以按照以下步骤进行操作:
1. 安装Vue-router
```
npm install vue-router@4.0.10
```
2. 创建router实例
在main.js中创建router实例,示例代码如下:
```javascript
import { createRouter, createWebHashHistory } from 'vue-router'
const router = createRouter({
history: createWebHashHistory(),
routes: [
{
path: '/',
name: 'Home',
component: () => import('@/views/Home.vue')
},
{
path: '/about',
name: 'About',
component: () => import('@/views/About.vue')
}
]
})
export default router
```
3. 在app.vue中引入router
```javascript
<script>
import { defineComponent } from 'vue'
import router from './router'
export default defineComponent({
name: 'App',
router,
setup() {
return {}
}
})
</script>
```
4. 在页面中使用router
在页面中可以使用`<router-link>`和`<router-view>`组件来实现页面的跳转和渲染。
```html
<template>
<div>
<router-link to="/">Home</router-link>
<router-link to="/about">About</router-link>
<router-view></router-view>
</div>
</template>
```
以上就是在uni-app和VUE3开发中使用Vue-router的步骤。需要注意的是,Vue-router在VUE3中有所改变,需要按照新的方式使用。
阅读全文