el-switch的focus方法怎么用
EL-Switch是element-ui中的一个组件,其focus方法用于设置组件的焦点状态。可以通过以下方法使用:
- 通过ref获取组件实例
<template>
<el-switch ref="mySwitch"></el-switch>
</template>
export default {
methods: {
focusMySwitch() {
this.$refs.mySwitch.focus();
}
}
}
- 通过组件的id获取组件实例
<template>
<el-switch id="mySwitch"></el-switch>
</template>
export default {
methods: {
focusMySwitch() {
document.getElementById('mySwitch').focus();
}
}
}
在以上两种方法中,都可以通过调用组件的focus方法来设置组件的焦点状态。
原文地址: https://www.cveoy.top/t/topic/bzdj 著作权归作者所有。请勿转载和采集!