效果如图:
在这里插入图片描述
代码如下:

在input上添加自定义指令
<input type="text" v-focus="true" value="">
directives与data处于同级位置
directives: {
        focus: {
          inserted: function (el, {value}) {
            console.log(el, {value})
            if (value) {
              el.focus()
            }
          }
        }
      },
Logo

前往低代码交流专区

更多推荐