vue3学习笔记1——基本知识 vue3学习笔记1——基本知识 2023-08-12 Cooper Zhu technology vue3 see: https://cn.vuejs.org/ 1 文件结构 以.vue结尾,文件结构 <script> // JS代码 </script> <template> <!-- HTML代码 -->
Git 高级用法 Git 高级用法 2023-08-07 Cooper Zhu technology git 1 大仓库拉取 # 1. 浅克隆:即只克隆最后一条commit记录 git clone --depth=1 <repository_name> # 2. 浅克隆:拉取并merge最后1000条commit记录 git pull --depth=1000 # 3. 从浅克隆恢复到完整克隆 git config remote.
VSCode前端开发环境搭建 VSCode前端开发环境搭建 2023-07-04 Cooper Zhu technology front-end VSCode ENV 名称 说明 官网 NodeJs 一个基于Chrome V8引擎的JavaScript运行环境 http://nodejs.cn/download VSCode Microsoft推出的,针对于编写现代Web和云应用的跨平台源代码编辑器 https://code.visualstudio.com/Download VSCode Plugs 1、Volar:vue语言插件 2、ESLint:
Git基本用法 Git基本用法 2023-06-28 Cooper Zhu technology git see:https://git-scm.com/ 1 常用流程 git init --initial-branch=main # 初始化git仓库 git remote add origin <remote_git_address> # 添加远程分支地址 git pull origin <