入门
1.前言
router 路由
应为vue是单页应用不会有那么多html 让我们跳转 所有要使用路由做页面的跳转
Vue 路由允许我们通过不同的 URL 访问不同的内容。通过 Vue 可以实现多视图的单页Web应用
2.安装
构建前端项目
// 可以选择router
npm init vue@latest
//或者
// 不能选择 要自己安装
npm init vite@latest
使用Vue3 安装对应的router4版本
使用Vue2安装对应的router3版本
npm install vue-router@4
标签:npm,vue,跳转,router,安装,路由
From: https://www.cnblogs.com/codehaoran/p/16816001.html