会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
文采呱呱
三更灯火五更鸡,正是少年读书时
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
15
16
17
18
19
20
21
22
23
···
25
下一页
2021年1月26日
工蜂的下拉和提交
摘要: git add . git commit -m '***' git pull git push
阅读全文
posted @ 2021-01-26 11:55 文采呱呱
阅读(159)
评论(0)
推荐(0)
编辑
flex布局
摘要: flex 两端对齐,列不满左对齐 利用after或者before(适用于每行3或者4列) .box:after { display:block; content:""; width: 30%; height:0px; } 全部代码.box { display: flex; flex-wrap: wr
阅读全文
posted @ 2021-01-26 11:53 文采呱呱
阅读(84)
评论(0)
推荐(0)
编辑
2020年12月7日
工蜂代码更新到本地
摘要: git status(查看本地分支文件信息,确保更新时不产生冲突) git checkout – [file name] (若文件有修改,可以还原到最初状态; 若文件需要更新到服务器上,应该先merge到服务器,再更新到本地) git branch(查看当前分支情况) git checkout re
阅读全文
posted @ 2020-12-07 16:03 文采呱呱
阅读(250)
评论(0)
推荐(0)
编辑
2020年11月30日
工蜂上传代码
摘要: git add . git commit -m 'page1' git pull git push
阅读全文
posted @ 2020-11-30 10:49 文采呱呱
阅读(173)
评论(0)
推荐(0)
编辑
2020年10月25日
hexo
摘要: hexo clean hexo g hexo d
阅读全文
posted @ 2020-10-25 19:40 文采呱呱
阅读(193)
评论(0)
推荐(0)
编辑
2020年10月8日
移动端自适应
摘要: <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"> width=device-width width为设置
阅读全文
posted @ 2020-10-08 23:35 文采呱呱
阅读(105)
评论(0)
推荐(0)
编辑
2020年9月23日
vue过场动画
摘要: <template> <div id="app"> <transition :enter-active-class="enterTransition" :leave-active-class="leaveTransition"> <keep-alive> <router-view class="ro
阅读全文
posted @ 2020-09-23 11:06 文采呱呱
阅读(188)
评论(0)
推荐(1)
编辑
2020年9月21日
获取 TypeScript
摘要: 1.安装 TypeScript $ npm install -g typescript 2.验证 TypeScript $ tsc -v # Version 4.0.2 3.编译 TypeScript 文件 $ tsc helloworld.ts # helloworld.ts => hellowo
阅读全文
posted @ 2020-09-21 22:27 文采呱呱
阅读(139)
评论(0)
推荐(0)
编辑
TypeScript 与 JavaScript 的区别
摘要: TypeScriptJavaScript JavaScript 的超集用于解决大型项目的代码复杂性 一种脚本语言,用于创建动态网页 可以在编译期间发现并纠正错误 作为一种解释型语言,只能在运行时发现错误 强类型,支持静态和动态类型 弱类型,没有静态类型选项 最终被编译成 JavaScript 代码,
阅读全文
posted @ 2020-09-21 22:26 文采呱呱
阅读(300)
评论(0)
推荐(0)
编辑
2020年9月15日
api封装使用
摘要: 本文使用axios请求,先在require中配置服务器请求拦截,并添加token,本文模拟token添加1111,域名使用的本地域名,需要自己配置一下。token可以使用cookie,放入cookie中获取添加当请求头中。 import axios from 'axios' // 创建axios对象
阅读全文
posted @ 2020-09-15 01:51 文采呱呱
阅读(295)
评论(0)
推荐(0)
编辑
上一页
1
···
15
16
17
18
19
20
21
22
23
···
25
下一页
公告