需求是需要将 Code 录入的字母转为大写
/**
* 字母转大写
*/
function inputHandler(e) {
e.target.value = e.target.value.toUpperCase();
// 触发 input 事件以便 v-model 更新数据
e.target.dispatchEvent(new Event("input"));
}
export default {
bind: function (el) {
el.addEventListener("input", inputHandler);
},
unbind: function (el) {
el.removeEventListener("input", inputHandler);
},
};