美文网首页
vue+element遇到问题总结

vue+element遇到问题总结

作者: ABY_sea | 来源:发表于2022-02-24 16:54 被阅读0次

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

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

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

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

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

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

    <template slot="header"></template> ------->  <template #header></template>

    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');        // 隐藏底部状态栏

          });

        }

    相关文章

      网友评论

          本文标题:vue+element遇到问题总结

          本文链接:https://www.haomeiwen.com/subject/hhmbtrtx.html