VUE 只能输入数字(牛逼)

<template>
<div id="example-3">
    <input type="number" @keydown="handleInput">
</div>
</template>
<script>
export default {
  methods: {
    handleInput(e) {
      let a = e.key.replace(/[^\d]/g, "");
      if (!a) {
        e.preventDefault();
      }
    }
  }
};
</script>

猜你喜欢

转载自blog.csdn.net/wjhl04/article/details/82970563