问题:input标签focus状态时...样式失效 解决办法:使用div标签替换input标签,给div标签设置tabindex="0"属性模拟input标签的聚焦/失焦状态(事件)
<div tabindex="0" @focus="focus" @blur="blur"></div>
参考网址