摘要: work-center.vue文件 import workCenter from './work-center'; export default { ...workCenter, name: 'work-center' }; work-center.js文件 export default { data(){ return{ } } }, ... 阅读全文
posted @ 2018-12-21 14:19 大大✌ 阅读(502) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chris-oil/p/6662894.html 阅读全文
posted @ 2018-12-11 10:55 大大✌ 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 简书: https://www.jianshu.com/p/f9c1d2fde321 小程序: https://blog.csdn.net/qq442270636/article/details/79274128 阅读全文
posted @ 2018-10-17 14:04 大大✌ 阅读(131) 评论(0) 推荐(0) 编辑
摘要: from表单提交和JSON区别 formData的使用:https://blog.csdn.net/hshuaile/article/details/78066462 阅读全文
posted @ 2018-10-12 10:16 大大✌ 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 1,前端 Vue Carbon ,http://myronliu.com/vue-carbon/book/v0.5.0/basic/badge.html vux, vant,有赞,有赞还可以做微信小程序, 阅读全文
posted @ 2018-09-18 14:44 大大✌ 阅读(275) 评论(0) 推荐(0) 编辑
摘要: http://es6.ruanyifeng.com/#docs/string 阅读全文
posted @ 2018-09-18 11:34 大大✌ 阅读(128) 评论(0) 推荐(0) 编辑
摘要: // 启动计时器 console.time('testForEach'); // (写一些测试用代码) // 停止计时,输出时间 console.timeEnd('testForEach'); 阅读全文
posted @ 2018-09-17 12:22 大大✌ 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1、import引入一个依赖包,不需要相对路径。 import 引入一个自己写的js文件,是需要相对路径的。 示例:import axios from ‘axios’; import AppService from ‘./appService’; 2、import什么情况下,要用{}的方式引入,什么 阅读全文
posted @ 2018-09-04 12:11 大大✌ 阅读(485) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/fanlinqiang/p/7756566.htmlhttps://www.jianshu.com/p/fde85549e3b0 阅读全文
posted @ 2018-08-28 15:13 大大✌ 阅读(136) 评论(0) 推荐(0) 编辑
摘要: flex item 1 flex item 2 flex item 3 ... 阅读全文
posted @ 2018-08-28 10:04 大大✌ 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-08-28 09:58 大大✌ 阅读(1496) 评论(0) 推荐(0) 编辑
摘要: 引入 阅读全文
posted @ 2018-07-24 15:54 大大✌ 阅读(1611) 评论(0) 推荐(0) 编辑
摘要: 单选 && 多选 select input的添加 阅读全文
posted @ 2018-06-20 17:11 大大✌ 阅读(903) 评论(1) 推荐(0) 编辑
摘要: file:///E:/download/gradle-2.14.1-all.zip判断是否连上手机adb devices 阅读全文
posted @ 2018-06-20 16:27 大大✌ 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 返回对象的原型。 语法 参数 object 必需。引用原型的对象。 返回值 object 参数的原型。原型也是对象。 异常 如果 object 参数不是对象,则将引发 TypeError 异常。 下面的示例使用 Object.getPrototypeOf 函数来验证数据类型。 阅读全文
posted @ 2018-06-11 14:22 大大✌ 阅读(305) 评论(0) 推荐(0) 编辑
摘要: Object.assign() 方法用于将所有可枚举属性的值从一个或多个源对象复制到目标对象。它将返回目标对象。 语法: 参数 target:目标对象 sources:源对象 返回值 目标对象 描述: 如果目标对象中的属性具有相同的键,则属性将被源中的属性覆盖。后来的源的属性将类似地覆盖早先的属性。 阅读全文
posted @ 2018-06-11 14:21 大大✌ 阅读(170) 评论(0) 推荐(0) 编辑
摘要: map 它类似于对象,也是键值对的集合,但是“键”的范围不限于字符串,各种类型的值(包括对象)都可以当作键。也就是说,Object 结构提供了“字符串—值”的对应,Map 结构提供了“值—值”的对应,是一种更完善的 Hash 结构实现。如果你需要“键值对”的数据结构,Map 比 Object 更合适 阅读全文
posted @ 2018-06-11 14:21 大大✌ 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 语法 参数 prototype 必需。 要用作原型的对象。 可以为 null。 descriptors 可选。 包含一个或多个属性描述符的 JavaScript 对象。 “数据属性”是可获取且可设置值的属性。 数据属性描述符包含 value 特性,以及 writable、enumerable 和 c 阅读全文
posted @ 2018-06-11 14:21 大大✌ 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 安装 https://reactnative.cn/docs/0.51/running-on-device-android.html#content 简书 https://www.jianshu.com/p/71d16fa5276f 阅读全文
posted @ 2018-06-11 14:19 大大✌ 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 简单插件 https://www.imooc.com/article/17262?block_id=tuijian_wz 组件插件 https://www.cnblogs.com/linxin/p/6637904.html 全面 https://www.cnblogs.com/libin-1/p/6 阅读全文
posted @ 2018-05-22 13:57 大大✌ 阅读(168) 评论(0) 推荐(0) 编辑