摘要: 1.初始化配置 git config 配置查询与修改 global 全局配置,所有仓库生效 system 系统配置,所有用户生效 例子: git config global user.name "Your name" 配置用户名 git config global user.email Your e 阅读全文
posted @ 2023-05-14 23:34 ForcePosition 阅读(25) 评论(0) 推荐(0)
摘要: 1.路由基础配置 https://router.vuejs.org/zh/guide/ 2.动态路由 根据设置的路径参数实现 const routes = [ // 动态字段以冒号开始 { path: '/users/:id', component: User }, ]。 需要注意的是参数改变时(第 阅读全文
posted @ 2023-04-26 14:51 ForcePosition 阅读(15) 评论(0) 推荐(0)