element-ui el-input 验证只能输入数字和小数点

要在 Element UI 的 el-input 组件中使用正则表达式验证只能输入数字和小数点,可以通过监听 @input 事件,在事件处理函数中使用正则表达式进行验证。示例如下:

<template>
  <el-input v-model="inputValue" @input="handleInput"></el-input>
</template>

<script>

你可能感兴趣的:(Vue开发实战总结,开发日常踩坑日记,vue.js,前端,javascript)