彭彭脆

导航

2022年10月26日 #

获取当前年月份的天数

摘要: getDay(year, month) { var day = new Date(year, month, 0); return day.getDate(); } 阅读全文

posted @ 2022-10-26 11:13 彭彭脆 阅读(9) 评论(0) 推荐(0) 编辑

2021年1月28日 #

本地代码提交gitlab,合并分支代码至主分支

摘要: 主分支代码提交:1、git init (在目录中创建新的git仓库)2、git add . (暂存所有更改)3、git commit -m "first commit"4、git pull / git pull origin master5、git push / git push oringin m 阅读全文

posted @ 2021-01-28 18:17 彭彭脆 阅读(307) 评论(0) 推荐(0) 编辑

2021年1月20日 #

本地项目上传至gitlab

摘要: 1、在gitlab新建一个项目仓库2、本地新建项目名与gitlab保持一致3、git bash here4、git init5、git add .6、git commit -m "first commit"7、git remote add origin "ssh://git@gitlab.cloud 阅读全文

posted @ 2021-01-20 16:57 彭彭脆 阅读(5) 评论(0) 推荐(0) 编辑

2020年9月7日 #

Echarts图表设置自适应

摘要: 1、设置autoresize属性即可 <v-chart :options="options" autoresize ></v-chart> 2、 myChart.setOption(option); // 当窗口或者大小发生改变时执行resize,重新绘制图表 window.onresize = m 阅读全文

posted @ 2020-09-07 10:23 彭彭脆 阅读(555) 评论(0) 推荐(0) 编辑