我需要的是VUe3的写法
时间: 2024-04-14 20:26:24 浏览: 138
vue组件的写法汇总
抱歉,之前给出的答案是基于Vue 2.x版本的写法。以下是在Vue 3中使用Composition API编写一级路由的示例:
```javascript
import { createRouter, createWebHistory } from 'vue-router';
import Home from '@/views/Home.vue';
import About from '@/views/About.vue';
const routes = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/about',
name: 'About',
component: About
},
// 其他一级路由...
];
const router = createRouter({
history: createWebHistory(),
routes
});
export default router;
```
在上面的示例中,我们使用了`createRouter`和`createWebHistory`函数来创建路由实例。然后,我们定义了一级路由,并将其与相应的组件关联起来。
确保安装了Vue Router的3.x版本,并在应用程序的入口文件中使用`createApp`函数引入并使用路由实例。
希望这个回答对你有帮助!如果你还有其他问题,请随时提问。
阅读全文