<u--input v-model="value" type="number " placeholder="请输入数字" @input="TypeInput($event)"></u--input>

方法
			TypeInput(e, val) {
				// 只能输入数字的验证;
				const inputType = /[^\d]/g   //想限制什么类型在这里换换正则就可以了
				this.$nextTick(function() {
					this.value = e.replace(inputRule, '');
				})
			},

正则 

只能输入数字
const inputType = /[^\d]/g		
只能输入字母
const inputType = /[^a-zA-Z]/g		
只能输入数字和字母
const inputType =/[\W]/g
只能输入小写字母
const inputType =/[^a-z]/g
只能输入大写字母
const inputType =/[^A-Z]/g
只能输入数字和字母和下划线
const inputType =/[^\w_]/g //下划线也可以改成%
只能输入中文
const inputType =/[^\u4E00-\u9FA5]/g
只能输入数字和小数点
const inputType =/[^\d.]/g

Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐