首页 前端知识 vue3 ts 使用router

vue3 ts 使用router

2024-06-10 23:06:48 前端知识 前端哥 556 499 我要收藏

1、下载router

npm install vue-router@4

2、在router/index.ts定义router

/**
 * createRouter 这个为创建路由的方法
 * createWebHashHistory 这个就是vue2中路由的模式,
 *                      这里的是hash模式,这个还可以是createWebHistory等
 * RouteRecordRaw 这个为要添加的路由记录,也可以说是routes的ts类型
 */
 import {createRouter, createWebHashHistory, RouteRecordRaw} from 'vue-router';
 // 路由记录,这个跟vue2中用法一致,就不做过多解释了
 const routes:Array<RouteRecordRaw> = [
   {
     path: '/',
     name: 'home',
     component: () => import("@/view/page/home.vue"),
   },
 ];
 
 const router = createRouter({
   history: createWebHashHistory(),
   routes
 });
 export default router;

3、mian.ts中声明router

import router from './router'
app.use(router);

4、在app.vue中使用router

<router-view >       
</router-view>
转载请注明出处或者链接地址:https://www.qianduange.cn//article/11835.html
标签
评论
发布的文章

第一次实验补充

2024-06-18 09:06:14

html5shiv,从入门到深入

2024-05-09 10:05:07

html5基础入门

2024-06-18 09:06:07

HTML5学习简记

2024-06-18 09:06:20

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!