摘要: 简易的命令行入门教程(参考gitee) git config --global user.name "姓名" git config --global user.email "邮箱" 创建 git 仓库 mkdir dirName cd dirName git init touch README.md 阅读全文
posted @ 2021-09-17 10:30 pizisu 阅读(85) 评论(0) 推荐(0) 编辑
摘要: git git clone xxx git status git add . git commit -m 'xxx' git push git pull 阅读全文
posted @ 2021-09-17 10:19 pizisu 阅读(23) 评论(0) 推荐(0) 编辑
摘要: Vue父组件传值 (vue-cli 3.11.1) 子组件 prop props: { path: String, activeColor: { type: String, default: "red", }, 父组件 data data() { return { activeColor: "#ff 阅读全文
posted @ 2021-09-17 10:12 pizisu 阅读(39) 评论(0) 推荐(0) 编辑