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'); // 隐藏底部状态栏
});
}
网友评论