09 2019 档案

git干活流程
摘要:干活流程 1、checkout 干活分支 from develop 2、干活 3、checkout develop 4、pull remote develop 5、checkout 干活分枝 6、rebase from develop 7、checkout develop 8、merge from 阅读全文

posted @ 2019-09-05 21:33 苦逼code 阅读(155) 评论(0) 推荐(0)

vue 中的ref和$refs用法
摘要:<div id="app"> <input type="text" ref="input1"/> <button @click="add">添加</button> </div> <script> new Vue({ el: "#app", methods:{ add(){ this.$refs.in 阅读全文

posted @ 2019-09-05 21:26 苦逼code 阅读(3898) 评论(0) 推荐(0)

vue使用小技巧
摘要:1、多图表resize事件去中心化 1.1 一般情况 有时候我们会遇到这样的场景,一个组件中有几个图表,在浏览器resize的时候我们希望图表也进行resize,因此我们会在父容器组件中写: mounted() { setTimeout(() => window.onresize = () => { 阅读全文

posted @ 2019-09-03 23:15 苦逼code 阅读(1450) 评论(0) 推荐(0)

CentOS7打开关闭防火墙与端口的基本命令
摘要:1、firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机启用 : 阅读全文

posted @ 2019-09-03 23:12 苦逼code 阅读(12838) 评论(0) 推荐(0)

导航