Git相关操作
git 常用命令。创建SSH Key1$ ssh-keygen -t rsa -C "youremail@example.com"
验证ssh
1$ ssh -T git@gitee.com
配置用户信息12$ git config --global user.name "Your Name" $ git config --global user.email "email@example.com"
仓库
在当前目录新建一个Git代码库
1$ git init
新建一个目录,将其初始化为Git代码库
1$ git init [project-name]
下载一个项目和它的整个代码历史
1$ git clone [url]
增加/删除文件
添加指定文件到暂存区
1$ git add [file1] [file2] ...
添加指定目录到暂存区,包括子目录
1$ git add [dir]
添加当前目录的所有文件到暂存区
1$ git add .
添加每个 ...
JQuery笔记
jQuery笔记选择器一、基础选择器
var allEle=$('*')——查找文档中的每一个元素
$('.class')——选择给定样式类名的所有元素。
1234567<body> <div class="class1 class2" id="div1">class1 class2</div> <div class="class1 class3">class1 class3</div> <script> $('.class1').text('选中了');//选中所有包含'class1'的元素 </script></body>
一个元素可以有多个类;其中只有一个必须匹配。
$('tagName')——根据给定(html)标记名称选择所有的元素。
1$('div') ...
第一篇文章
组件通信方式有哪些?
prop,父组件通过属性向子组件传递数据
event,子组件通过$emit 想父组件抛出事件和数据
class和style父组件向子组件根元素添加类名或者上腾娱乐样式
12345678<HelloWorld msg="标签内部传递数据" class="add" style="background-color:blue" />===>此时自组建的根元素上面被添加了class:add,和style样式<div data-v-469af010="" class="hello add" style="background-color: blue;"><h1 data-v-469af010="">标签内部传递数据</h1></div>
12345678<HelloWorld msg=& ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment