Bootstrap

[element-ui] el-input自动获取焦点

<el-input
	v-model="value"
    v-focus
  >
</el-input>
  directives: {
    // 注册一个局部的自定义指令 v-focus
    focus: {
      // 指令的定义
      inserted(el) {
        // 聚焦元素
        if (el.querySelector('input')) {
          el.querySelector('input').focus();
        }
      },
    },
  },
;