摘要:
Vue 中 extend // 必选参数to的类型,可选参数from的类型 冒号后是函数返回值的类型 export function extend (to: Object, _from: ?Object): Object { for (const key in _from) { to[key] = 阅读全文
摘要:
大部分场景都是超过一行就显示... <template> <div class="other-product-item item-name" :title="item.name">{{item.name}}</div> <div class="other-product-item item-name 阅读全文
摘要:
使用2个style的方式不够优雅,可以使用下面方式做样式穿透 .normal-field /deep/ .el-form-item { margin-bottom: 0px; } .normal-field /deep/ .el-form-item__label { color: #939393; 阅读全文
摘要:
概述 除了正常运行模式,ECMAscript 5添加了第二种运行模式:'严格模式'。顾名思义,这种模式使得Javascript在更严格的条件下运行。 目的 1: 消除Javascript语法的一些不合理不严谨的地方,减少怪异行为 2: 消除代码运行的不安全之处, 保证代码运行的安全 3: 提高编译器 阅读全文
摘要:
二者最好只选择一个来进行对文件的打包,防止有冲突出现导致图片加载失败 如果相对不同大小的问题选择不同的loader,可以在url-loader的fallback属性指定不满足条件时的loader { test: /\.(png|jpg|gif|jpeg)$/, use: [ { loader: 'u 阅读全文