基于Vue开发数字输入框组件
程序员文章站
2022-09-26 15:43:22
随着 vue 越来越火热, 相关组件库也非常多啦, 只用*怎么够, 还是要造起来!!!
1、概述
vue组件开发的api:props、events和slots
2、...
随着 vue 越来越火热, 相关组件库也非常多啦, 只用*怎么够, 还是要造起来!!!
1、概述
vue组件开发的api:props、events和slots
2、组件代码
github地址:https://github.com/mengfangui/vueinputnumber
效果:
(1)index.html
<!doctype html> <html lang="zh"> <head> <meta charset="utf-8" /> <title>数字输入框组件</title> </head> <body> <div id="app"> <!--数字输入框组件命名为:input-number--> <!--数字输入框组件默认值为5,最大值为10,最小值为0--> <input-number v-model='value' :max='10' :min='0'></input-number> </div> <script src="https://cdn.bootcss.com/vue/2.5.9/vue.min.js"></script> <script src="js/input-number.js" type="text/javascript" charset="utf-8"></script> <script src="js/index.js" type="text/javascript" charset="utf-8"></script> </body> </html>
(2)input-number.js
//验证输入值是否为数字 function isvaluenumber(value) { return(/(^-?[0-9]+\.{1}\d+$)|(^-?[1-9]*$)|(^-?0{1}$)/).test(value + ''); } vue.component('input-number', { //模板 template: ` <div class="input-number"> <input type="text" :value="currentvalue" @change="handlechange" /> <button @click="handledown" :disabled="currentvalue <= min">-</button> <button @click="handleup" :disabled="currentvalue >= max">+</button> </div> `, //props实现与父组件的通信(父组件-->子组件) //对每个props进行校验,props的值可以是数组,也可以是对象 props: { max: { //必须是数字类型 type: number, //默认值为infinity default: infinity }, min: { type: number, default: -infinity }, value: { type: number, default: 0 } }, //vue组件为单向数据流,声明data来引用父组件的value,在组件内部维护currentvalue data: function() { return { currentvalue: this.value } }, //监听:与父组件通信 (子组件-->父组件) watch: { currentvalue: function(val) { //使用v-model改变value //this指向当前组件实例 this.$emit('input', val) } // , //本示例未使用自定义函数,使用了v-mode input函数来更新value // value: function(val) { // //自定义事件on-change,告知父组件数字输入框值有所改变 // this.$emit('on-change', val) // } }, methods: { //父组件传递过来的值可能不符合条件(大于最大值,小于最小值) updatevalue: function(val) { if(val > this.max) { val = this.max; } if(val < this.min) { val = this.min; } this.currentvalue = val; }, handledown: function() { if(this.currentvalue <= this.min) { return; } this.currentvalue -= 1; }, handleup: function() { if(this.currentvalue >= this.max) { return; } this.currentvalue += 1; }, handlechange: function(event) { var val = event.target.value.trim(); var max = this.max; var min = this.min; if(isvaluenumber(val)) { val = number(val); this.currentvalue = val; if(val > max) { this.current = max; } if(val < min) { this.current = min; } } else { //如果输入的不是数字,将输入的内容重置为之前的currentvalue event.target.value = this.currentvalue; } } }, //初始化 mounted: function() { this.updatevalue(this.value); } })
(3)index.js
var app = new vue({ el: '#app', data: { //数字输入框组件默认值为5(父组件设置初始化值) value: 5 } })
总结
以上所述是小编给大家介绍的基于vue开发数字输入框组件,希望对大家有所帮助