打赏
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 88 下一页
摘要: 文本省略号是非常常见的需求,而省略号展示又通常分为俩种情况折行和不折行。不折行: 折行(能主动控制行数,这里设置的超出 4 行显示省略号): 阅读全文
posted @ 2019-09-02 10:23 孟繁贵 阅读(20802) 评论(0) 推荐(0) 编辑
摘要: 基于vue和echarts的数据可视化: https://github.com/MengFangui/vue-data-visualization 阅读全文
posted @ 2019-08-13 16:41 孟繁贵 阅读(4274) 评论(0) 推荐(0) 编辑
摘要: 1、public文件夹 使用绝对路径引入。 2、assets文件夹 使用相对路径引入。 https://cli.vuejs.org/zh/guide/html-and-static-assets.html#%E4%BB%8E%E7%9B%B8%E5%AF%B9%E8%B7%AF%E5%BE%84%E 阅读全文
posted @ 2019-08-12 14:56 孟繁贵 阅读(3532) 评论(0) 推荐(0) 编辑
摘要: 表格和分页组件封装 github地址:https://github.com/MengFangui/iview-table-page npm地址:https://www.npmjs.com/package/iview-table-page 欢迎star。 阅读全文
posted @ 2019-08-08 17:49 孟繁贵 阅读(736) 评论(0) 推荐(0) 编辑
摘要: 1、addEventListener参数 type 表示监听事件类型的字符串。 listener 回调函数 options 可选 useCapture 可选 事件冒泡(false)还是事件捕获(true)阶段触发回调函数。 2、使用 passive 改善的滚屏性能 根据规范,passive 选项的默 阅读全文
posted @ 2019-08-08 17:36 孟繁贵 阅读(1701) 评论(0) 推荐(0) 编辑
摘要: vue+websocket demo: <!-- vue + websocket连接demo --> <template> <div> <h1>vue + websocket连接demo</h1> <Button @click="test">test</Button> </div> </templa 阅读全文
posted @ 2019-08-08 11:46 孟繁贵 阅读(6695) 评论(3) 推荐(0) 编辑
摘要: 以vue的package.json为例: 另外还有3个字段比较重要: 阅读全文
posted @ 2019-07-12 10:32 孟繁贵 阅读(8313) 评论(0) 推荐(0) 编辑
摘要: UMD:UMD 版本可以通过 <script> 标签直接用在浏览器中。jsDelivr CDN 的 https://cdn.jsdelivr.net/npm/vue 默认文件就是运行时 + 编译器的 UMD 版本 (vue.js)。 CommonJS:CommonJS 版本用来配合老的打包工具比如 阅读全文
posted @ 2019-07-12 10:01 孟繁贵 阅读(466) 评论(0) 推荐(0) 编辑
摘要: Button 废弃 type ghost,原先的 default 样式有改变。 Icon 的图标升级至 ionicons 3.0 图标,图标名称有改变。 Breadcrumb 废弃 href 属性。 Badge 的 count 属性只支持 Number 类型。 Tag 的 color 属性将原先的  阅读全文
posted @ 2019-07-03 15:04 孟繁贵 阅读(2407) 评论(0) 推荐(0) 编辑
摘要: 1、存储更新监测 存储状态监测的原理是storage事件。storage事件说明: https://developer.mozilla.org/zh-CN/docs/Web/API/StorageEvent storage事件是注册在window上的。 2、示例 同域下2个文件,分别为test.ht 阅读全文
posted @ 2019-04-19 15:39 孟繁贵 阅读(4074) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 88 下一页
TOP