<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 )
<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 )
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。