类似的现象还有select选中不了,CheckBox无法点击

可能的原因有两个:

1.未绑定v-model

绑定即可

2.v-model是动态的

input、select等在input或者change事件中调用

<input v-model='text' @input="onInput">

  

onInput(){
  this.$forceUpdate();
}

 

相关文章:

  • 2021-12-27
  • 2021-11-29
  • 2022-12-23
  • 2023-03-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-27
相关资源
相似解决方案