el-button autofocus 无效(解决办法)

<el-button type="primary" autofocus="true" v-focus round plain>日常检查</el-button>

1 directives: {
2       focus: {
3          inserted: function(el) {
4            el.focus();
5          }
6      }
7 }

上面的方法就可以达到我开始想要的效果 ( v-focus )

原文地址:https://www.cnblogs.com/luorende/p/14758735.html