ijry / uview-plus

零云®uview-plus,是uni-app全面兼容nvue的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水。
https://uview-plus.jiangruyi.com
MIT License
434 stars 110 forks source link

up-input nvue 页面 使用focus方法报错 #469

Closed zhangxushiyong closed 1 month ago

zhangxushiyong commented 1 month ago

在nvue页面使用 input 需要点击按钮实现输入框聚焦 根据文档提示需要调用focus方法 但是报错了该怎么解决 a2bd29ac21581307b35ada904d61e4db

ijry commented 1 month ago
在u-input的methods里增加
focus() {
    this.$refs['input-native'].focus();
},
blur() {
    this.$refs['input-native'].blur();
}

再加这个试下 image