打赏

04 2020 档案

摘要:pipcook https://github.com/alibaba/pipcook 阅读全文
posted @ 2020-04-22 09:58 孟繁贵 阅读(586) 评论(0) 推荐(0) 编辑
摘要:object-fit 设置内容填充方式。 参考:https://developer.mozilla.org/zh-CN/docs/Web/CSS/object-fit 阅读全文
posted @ 2020-04-17 14:16 孟繁贵 阅读(284) 评论(0) 推荐(0) 编辑
摘要:参考: https://www.cnblogs.com/super-yu/p/9480589.html https://www.jianshu.com/p/17c1cf2f4426 同域iframe相互调用: 子页面调用父页面方法:window.parent.fatherFn(); 父页面调用子页面 阅读全文
posted @ 2020-04-16 15:31 孟繁贵 阅读(674) 评论(0) 推荐(0) 编辑
摘要:1、示例代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css实现页面顶部进度条效果</title> <style type="text/css"> body { position: relative; padding: 阅读全文
posted @ 2020-04-09 20:19 孟繁贵 阅读(1122) 评论(0) 推荐(0) 编辑
摘要:跨域解决方法汇总: (1)JSONP (2)CORS(后端实现) (3)webSocket (4)node代理(先发给同域node服务器,同域服务器再发给真正服务器) (5)Nginx代理 conf/nginx.conf配置: # 新加的 location /spring { proxy_pass 阅读全文
posted @ 2020-04-05 20:45 孟繁贵 阅读(321) 评论(0) 推荐(0) 编辑
摘要:对需要使用compile或者在vue构造函数中使用template 选项时,需要引入构建版本(完整版)的vue.js。 需要在vue.config.js中进行配置,有如下2种方法: const path = require('path'); function resolve (dir) { retu 阅读全文
posted @ 2020-04-05 17:18 孟繁贵 阅读(916) 评论(0) 推荐(0) 编辑
摘要:工具: https://mdnice.com/ 阅读全文
posted @ 2020-04-05 16:45 孟繁贵 阅读(1768) 评论(0) 推荐(0) 编辑
摘要:1、data mixins中的data会合并到data中,有冲突的话,data中数据覆盖mixins中的数据。 2、钩子函数 mixins中的钩子函数也会执行,先执行mixins中的钩子函数。 3、methods、components 和 directives methods、components  阅读全文
posted @ 2020-04-05 16:33 孟繁贵 阅读(1536) 评论(0) 推荐(0) 编辑
摘要:一、引言 代码规范提交可以很好的保存代码修改日志,规范提交日志对于定位问题或代码回退具有极大意义。 二、使用插件列表 commitizen cz-conventional-changelog conventional-changelog-cli 1. commitizen 规范代码的提交 1.1 n 阅读全文
posted @ 2020-04-04 22:43 孟繁贵 阅读(8902) 评论(0) 推荐(0) 编辑
摘要:www.remove.bg/zh 阅读全文
posted @ 2020-04-04 20:29 孟繁贵 阅读(635) 评论(0) 推荐(0) 编辑
摘要:$dispatch和$broadcast源代码: function broadcast (componentName, eventName, params) { this.$children.forEach(child => { const name = child.$options.name // 阅读全文
posted @ 2020-04-03 21:48 孟繁贵 阅读(361) 评论(0) 推荐(0) 编辑
摘要:网址: https://github.com/any86/any-rule 阅读全文
posted @ 2020-04-03 20:22 孟繁贵 阅读(134) 评论(0) 推荐(0) 编辑
摘要:1、网址 https://crowdin.com/ 2、特点 逐句翻译 翻译推荐 进度管理 审核机制 阅读全文
posted @ 2020-04-02 14:10 孟繁贵 阅读(478) 评论(0) 推荐(0) 编辑
摘要:1、网址 https://docsify.js.org 2、特点 多语言 git pages 全文检索 插件扩展 3、部署 nginx方式: server { listen 80; server_name your.domain.com; location / { alias /path/to/di 阅读全文
posted @ 2020-04-02 14:03 孟繁贵 阅读(235) 评论(0) 推荐(0) 编辑
摘要:1、官网说明 https://cli.vuejs.org/zh/guide/build-targets.html#%E5%BA%93 2、输出文件 dist/myLib.common.js:一个给打包器用的 CommonJS 包 (不幸的是,webpack 目前还并没有支持 ES modules 输 阅读全文
posted @ 2020-04-02 11:16 孟繁贵 阅读(468) 评论(0) 推荐(0) 编辑
摘要:1、Vue Test Utils 官网 https://vue-test-utils.vuejs.org/zh/ 2、推荐Jest库 Jest特点有: 一站式测试方案 DOM API 断言库 Mock库 快照 覆盖率 3、实践 (待更新) 阅读全文
posted @ 2020-04-02 10:22 孟繁贵 阅读(1436) 评论(0) 推荐(0) 编辑
摘要:1、官网 https://lerna.js.org/ 2、特点 一键安装依赖 自动更新依赖 独立版本管理 非Npm包 3、实践 (1)采用Independent模式 (2)根据Git提交信息,自动生成changelog (3)eslint规则检查 (4)prettier自动格式化代码 (5)提交代码 阅读全文
posted @ 2020-04-02 10:15 孟繁贵 阅读(1284) 评论(0) 推荐(0) 编辑

TOP