Vue数字输入框组件示例代码详解
程序员文章站
2022-06-22 14:20:18
数字输入框组件
实现功能:只允许输入数字(包括小数)、允许设置初始值、最大值、最小值。
为了方便,这里选用vue的 cli-service
实现快速原型开发
首先templ...
数字输入框组件
实现功能:只允许输入数字(包括小数)、允许设置初始值、最大值、最小值。
为了方便,这里选用vue的 cli-service
实现快速原型开发
首先template部分代码
<template> <div class="demo"> <input-number v-model="value" :max="10" :min="0"></input-number> </div> </template>
这部分没有什么特别说明的,分别传入 value、max、min 作为子组件的原始值最大值和最小值。在子组件中用 props 接收,独立组件,对每个传入的prop进行类型验证
主要js部分代码
<script> import vue from 'vue' vue.component('input-number',{ props: { value: { type: number, default: 0 }, max: { type: number, default: infinity }, min: { type: number, default: -infinity } }, data() { return { currentvalue: this.value } }, render(cr) { let _this = this ... } }) export default { data() { return { value: 5 } } } </script>
在这里不能使用字符串的方式定义组件模板,所以使用 render() 函数的方式
render(cr) { let _this = this return cr('div',{'class': 'input-number'},[ cr('button',{'class': {'down-btn':true,'dis':this.currentvalue<=this.min},on: {click: _this.handledown},},['-']), cr('input',{'class': 'change-input',domprops: {value: _this.currentvalue}, on: {change: _this.handlechange}}), cr('button',{'class': {'down-btn':true,'dis':this.currentvalue>=this.max},on: {click: _this.handleup},},['+']), ]) }
定义 watch 和 methods
watch: { value(val) { this.updatevalue(val) }, currentvalue(val) { this.$emit('input', val) this.$emit('on-change', val) } }, methods: { updatevalue(val) { if(val > this.max) val = this.max if(val < this.min) val = this.min this.currentvalue = val }, handledown() { if(this.currentvalue<=this.min) return this.currentvalue-=1 }, handleup() { if(this.currentvalue>=this.max) return this.currentvalue+=1 }, handlechange(ev) { let val = ev.target.value.trim() let max = this.max let min = this.min if(this.isvaluenumber(val)) { val = number(val) this.currentvalue = val if(val > max) { this.currentvalue = max } else if(val < min) { this.currentvalue = min } }else { ev.target.value = this.currentvalue } }, isvaluenumber(val) { return (/(^-?[0-9]+\.{1}\d+$)|(^-?[1-9][0-9]*$)|(^-?0{1}$)/).test(val+'') } }
最后是less部分代码
<style lang="less"> * { box-sizing: border-box; } .demo { width: 200px; margin: 0 auto; } .input-number { width: 100%; display: flex; height: 40px; align-items: center; justify-content: space-between; .down-btn,.up-btn { font-size: 18px; width: 40px; height: 40px; background-color: #f5f7fa; color: #606266; border: 1px solid #dcdfe6; border-radius: 4px 0 0 4px; cursor: pointer; outline: none; &.up-btn { border-radius: 0 4px 4px 0; } &.dis { cursor: not-allowed; } } .change-input { flex: 1; max-width: 100px; outline: none; border: none; text-align: center; height: 40px; } } </style>
总结
以上所述是小编给大家介绍的vue数字输入框组件示例代码,希望对大家有所帮助
上一篇: laravel中Join语法以及使用Join多个条件
下一篇: JS实现容器模块左右拖动效果