摘要: 1.arguments对象 2.Function 对象 3.闭包 阅读全文
posted @ 2019-09-25 17:17 PiPai 阅读(193) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chenhuichao/p/8493095.html call、apply和bind是Function对象自带的三个方法,都是为了改变函数体内部 this 的指向。 apply 、 call 、bind 三者第一个参数都是 this 要指向的对象,也就 阅读全文
posted @ 2019-09-25 10:30 PiPai 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 1.实例 2.git上传代码到coding 阅读全文
posted @ 2019-09-25 00:23 PiPai 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 1.示例 2.hexo安装 3.项目部署在码云上面 4.码云厅的免费访问域名 阅读全文
posted @ 2019-09-24 22:57 PiPai 阅读(1871) 评论(0) 推荐(0) 编辑
摘要: 参照:https://www.jianshu.com/p/46ffff059092 https://www.cnblogs.com/miracle77hp/articles/11163532.html 专用名词解析 Workspace:工作区 Index / Stage:暂存区 Repository 阅读全文
posted @ 2019-09-23 23:13 PiPai 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 搭建示例:https://blog.csdn.net/grave2015/article/details/79961843 、 https://www.cnblogs.com/liuxianan/p/build-blog-website-by-hexo-github.html 、https://bl 阅读全文
posted @ 2019-09-20 00:20 PiPai 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.路由跳转 <router-link to="/home">静态路由跳转</router-link> this.$router.push('/home') this.$router.replace('/home') 2.动态路由传参 方法1.params first.在router中的路由映射{ 阅读全文
posted @ 2019-09-19 15:44 PiPai 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1.vue中iview的标签报错 x-invalid-end-tag 因为标签是闭合的 2.vue报There are multiple modules with names that only differ in casing错误提示 阅读全文
posted @ 2019-09-19 09:50 PiPai 阅读(452) 评论(0) 推荐(1) 编辑
摘要: 1 li { 2 width: 100px; 3 height: 30px; 4 display: inline-block; 5 background: red; 6 } 7 .box li:nth-child(2n) { 8 background: blue; 9 } 10 .box{ 11 w 阅读全文
posted @ 2019-09-18 15:59 PiPai 阅读(1604) 评论(0) 推荐(0) 编辑
摘要: // es5中的类 // a.最简单的类 // function Person(){ // this.name = 'zhangsan'; // this.age = 18; // } // var p = new Person(); // console.log(p.anme); // b.构造函数和原型链里面增加方法 ... 阅读全文
posted @ 2019-09-17 00:15 PiPai 阅读(2133) 评论(0) 推荐(0) 编辑