vue+element遇到问题总结

1、el-input部分输入框聚焦的时候会出现google的地址管理

原因:新版google自动过滤input的autocomplete属性

解决:autocomplete="随便一个值",正常值是off

2、解决路由刷新store数据丢失问题

https://www.cnblogs.com/zhongchao666/p/9567527.html

3、自定义表头switch异常,不使用slot-scope时

------->  

4、禁用el-checkbox时保留样式

@click.native.prevent

5、微信前进后退按钮

let isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端

if (isIOS) {

      document.addEventListener('WeixinJSBridgeReady', function onBridgeReady() {

        WeixinJSBridge.call('hideToolbar');        // 隐藏底部状态栏

      });

    }

6、el-table头部自定义checkbox选中取消样式不改变

el-table绑定 :header-cell-style="{'font-style':'normal'}",属性可随意添加

你可能感兴趣的:(vue+element遇到问题总结)