VUE 只能输入数字(牛逼)
<template><div id="example-3"><input type="number" @keydown="handleInput"></div></template><s
·
<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>
更多推荐
已为社区贡献2条内容
所有评论(0)