KeiSei

Results 2 comments of KeiSei

```javascript componentUpdated : function(el,binding) { //... var tagName = value.event.target.tagName.toLocaleLowerCase(); if(tagName === 'input' || tagName === 'textarea') { value.event.target.focus(); } value.methods.call(this, value); } ``` 试了一下这样可以work vue1中也有这个问题 ```javascript if(tagName === 'input'...