摘要:
Router.beforeEach(()=>{ if (to.query.IP) { next(); return; }; if (from.query.IP) { let toQuery = JSON.parse(JSON.stringify(to.query)); toQuery.abc = f 阅读全文
摘要:
IE11中el-steps组件塌陷的原因是由于flex布局导致的 在el-steps组件的外面再包一层容器同时设置属性display:flex el-steps组件添加属性flex-grow:1;同时设置一个min-height 问题解决 后来step节点也遇到了坍塌问题,由于flex:1在IE中不 阅读全文
摘要:
new Vue({ i18n, router, store, render: h => h(App), data: { // 空的实例放到根组件下,所有的子组件都能调用 Bus: new Vue() } }).$mount('#app'); 子组件删除列表数据的时候,需要通知父组件更新左侧的树结构数 阅读全文
摘要:
elementUI中的el-checkbox复选框组件,最近在项目中碰到一个bug在IE中,当我勾选复选框的的时候,事件被触发了两次,在IE中的值还不一样 如果一开始为true 第二次结果则为 false, 最终我感觉应该是事件绑定引发的问题 查看了一下文档 官方提供的方法只有change事件 将c 阅读全文
摘要:
全局安装依赖的时候,因为node-sass报错 Module build failed (from .[表情]de_modules/mini-css-extract-plugin/dist/loader.js): ModuleBuildError: Module build failed (from 阅读全文
摘要:
/** * 表单重置的方法 */ resetForm(formName) { this.$next((=>{ this.$refs[formName].resetFields(); }) }, 阅读全文
摘要:
现在的需求是当点击icon图标的时候input框 与span标签切换显示,默认input框显示的时候需要自动获取焦点,首次点击icon是可以的 后面再次切换就不行,原先是在el-input标签上面添加了autofocus属性 可以使用原生的focus事件自动触发 阅读全文
摘要:
网上说安装 babel-plugin-transform-runtime .babelrc 文件中 添加 "plugins": [ [ "transform-runtime", { "helpers": false, "polyfill": false, "regenerator": true, " 阅读全文
摘要:
当我从远程拉取代码的时候报下面的错 需要在设置中配置 找到安装目录,填写ssh.exe的绝对路径 阅读全文
摘要:
/*滚动条样式*/ .overflow-height::-webkit-scrollbar { width: 5px; height: 5px;} .overflow-height::-webkit-scrollbar-thumb {border-radius: 3px; -webkit-box-shadow: inset 0 0 5px #ddd;background: rgba(0,0,0,0 阅读全文