上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页
摘要: git add . git commit -m '***' git pull git push 阅读全文
posted @ 2021-01-26 11:55 文采呱呱 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 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 文采呱呱 阅读(83) 评论(0) 推荐(0) 编辑
摘要: git status(查看本地分支文件信息,确保更新时不产生冲突) git checkout – [file name] (若文件有修改,可以还原到最初状态; 若文件需要更新到服务器上,应该先merge到服务器,再更新到本地) git branch(查看当前分支情况) git checkout re 阅读全文
posted @ 2020-12-07 16:03 文采呱呱 阅读(237) 评论(0) 推荐(0) 编辑
摘要: git add . git commit -m 'page1' git pull git push 阅读全文
posted @ 2020-11-30 10:49 文采呱呱 阅读(169) 评论(0) 推荐(0) 编辑
摘要: hexo clean hexo g hexo d 阅读全文
posted @ 2020-10-25 19:40 文采呱呱 阅读(186) 评论(0) 推荐(0) 编辑
摘要: <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) 编辑
摘要: <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 文采呱呱 阅读(186) 评论(0) 推荐(1) 编辑
摘要: 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 文采呱呱 阅读(138) 评论(0) 推荐(0) 编辑
摘要: TypeScriptJavaScript JavaScript 的超集用于解决大型项目的代码复杂性 一种脚本语言,用于创建动态网页 可以在编译期间发现并纠正错误 作为一种解释型语言,只能在运行时发现错误 强类型,支持静态和动态类型 弱类型,没有静态类型选项 最终被编译成 JavaScript 代码, 阅读全文
posted @ 2020-09-21 22:26 文采呱呱 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 本文使用axios请求,先在require中配置服务器请求拦截,并添加token,本文模拟token添加1111,域名使用的本地域名,需要自己配置一下。token可以使用cookie,放入cookie中获取添加当请求头中。 import axios from 'axios' // 创建axios对象 阅读全文
posted @ 2020-09-15 01:51 文采呱呱 阅读(289) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 25 下一页