参考:
https://forum.vuejs.org/t/unknown-issues-in-change-event-of-radio-in-vue-2-x-webpack-2-x/11034

var acceptValue = makeMap('input,textarea,option,select');
var mustUseProp = function (tag, type, attr) {
  return (
    (attr === 'value' && acceptValue(tag)) && type !== 'button' ||
    (attr === 'selected' && tag === 'option') ||
    (attr === 'checked' && tag === 'input') ||
    (attr === 'muted' && tag === 'video')
  )
};

相关文章:

  • 2021-05-19
  • 2021-10-07
  • 2022-12-23
  • 2021-10-27
  • 2021-06-07
  • 2021-09-11
  • 2021-11-17
  • 2022-12-23
猜你喜欢
  • 2021-12-14
  • 2022-12-23
  • 2021-11-22
  • 2021-06-14
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案