2019年10月22日

Vue 性能优化--打包优化

摘要: https://blog.csdn.net/qq_42866164/article/details/102688831 阅读全文

posted @ 2019-10-22 19:56 1234wu 阅读(571) 评论(0) 推荐(0) 编辑

Vue Router的集中统一管理

摘要: https://blog.csdn.net/qq_42866164/article/details/102688831 阅读全文

posted @ 2019-10-22 19:56 1234wu 阅读(188) 评论(0) 推荐(0) 编辑

2019年10月9日

Android intent 页面跳转

摘要: https://blog.csdn.net/qq_42866164/article/details/102461046 阅读全文

posted @ 2019-10-09 15:31 1234wu 阅读(113) 评论(0) 推荐(0) 编辑

2019年9月30日

normalize.css

摘要: 目前GitHub上比较火的一个样式重置的css https://blog.csdn.net/qq_42866164 阅读全文

posted @ 2019-09-30 16:37 1234wu 阅读(109) 评论(0) 推荐(0) 编辑

2019年9月29日

Android 点击跳转到蓝牙设置界面

摘要: 不再重写一遍了,看csdn: https://blog.csdn.net/qq_42866164/article/details/101353709 阅读全文

posted @ 2019-09-29 11:21 1234wu 阅读(1614) 评论(0) 推荐(0) 编辑

Android--ViewPager点击按钮切换下一页

摘要: 不再重写一遍了,看csdn: https://blog.csdn.net/qq_42866164/article/details/101346058 阅读全文

posted @ 2019-09-29 11:19 1234wu 阅读(1363) 评论(0) 推荐(0) 编辑

2019年9月18日

搬家至csdn

摘要: 搬家至csdn https://blog.csdn.net/qq_42866164 阅读全文

posted @ 2019-09-18 09:12 1234wu 阅读(85) 评论(0) 推荐(0) 编辑

2019年9月5日

关于复选框选中状态的判断

摘要: https://www.cnblogs.com/circulatttt/p/5193262.html 阅读全文

posted @ 2019-09-05 15:33 1234wu 阅读(187) 评论(0) 推荐(0) 编辑

2019年8月28日

css渐变色兼容性写法

摘要: 1 background: -webkit-linear-gradient(left, #0f0f0f, #0c0c0c, #272727); 2 /* Safari 5.1 - 6.0 */ 3 background: -o-linear-gradient(left, #0f0f0f, #0c0c0c, #272727); 4 /* Opera 11.1 - 12.0 */ 5 backgrou 阅读全文

posted @ 2019-08-28 20:17 1234wu 阅读(666) 评论(6) 推荐(0) 编辑

2019年8月13日

弹性盒子

摘要: Flex 布局教程:语法篇 作者: 阮一峰 日期: 2015年7月10日 作者: 阮一峰 日期: 2015年7月10日 http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html 阅读全文

posted @ 2019-08-13 15:50 1234wu 阅读(135) 评论(0) 推荐(0) 编辑

2019年7月31日

webpack配置--传统多页面项目

摘要: webpack.config.js配置:(热加载,编译less.等常用功能都有) 文件目录: 补充: 1.配置视频文件:https://stackoverflow.com/questions/45645675/webpack-3-locates-mp4-file-but-video-is-not-p 阅读全文

posted @ 2019-07-31 19:58 1234wu 阅读(922) 评论(0) 推荐(0) 编辑

2019年7月27日

前端数据的加密和解密--对象解密的坑

摘要: 作为一个前端菜鸡,今天碰到一个加密解密的坑,浪费了不少时间. 为了报仇,我决定再次拿起我的小本本,君子报仇十年不晚,先记下来. 先说坑,加密解密前端工作中很常见. 之前也加密过密码账户之类的,一切都顺畅无比,比如: 输出结果:(看吧一切都那么顺利) 就在今天当我加密要一个"对象"的时候......出 阅读全文

posted @ 2019-07-27 16:58 1234wu 阅读(1156) 评论(0) 推荐(0) 编辑

2019年7月25日

vue图片不存在时加载默认图片

摘要: 在文件中的img那里添加:οnerrοr="errorImg01",然后设置errorImg01的路径如果直接写成 errorImg01: ('../../assets/images/item_image.png'),会找不到这个图片 由于项目启动后, 图片的路径并不是我们写的路径了。所以我们用 e 阅读全文

posted @ 2019-07-25 16:21 1234wu 阅读(1712) 评论(0) 推荐(0) 编辑

2019年7月10日

axios 文件流下载

摘要: this.axios .post(this.baseUrl+"/exportUser", { admin: "",keys: "",keyword:this.keyword,},{responseType: 'blob'}) .then(function(response) { var blob = new Blob([response.dat... 阅读全文

posted @ 2019-07-10 19:50 1234wu 阅读(1649) 评论(0) 推荐(0) 编辑

2019年6月26日

vue elementui 切换语言

摘要: 1.安装插件:npm install vue-i18n --save 2.src下新建i18n文件夹, i18n文件夹下创建langs文件夹和i18n.js文件 langs文件夹下创建cn.js; en.js; index.js 如图: 3. i18n.js: 4. cn.js: 5. en.js: 阅读全文

posted @ 2019-06-26 21:14 1234wu 阅读(6618) 评论(0) 推荐(0) 编辑

导航