Vue.js數(shù)字輸入框組件使用方法詳解
本文實例為大家分享了Vue.js數(shù)字輸入框組件的具體實現(xiàn)代碼,供大家參考,具體內(nèi)容如下
效果
入口頁 index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>數(shù)字輸入框組件</title> </head> <body> <div id="app"> <input-number v-model="value" :max="10" :min="0"></input-number> </div> <script src="https://unpkg.com/vue/dist/vue.js"></script> <script src="input-number.js"></script> <script src="index.js"></script> </body> </html>
數(shù)字輸入框組件 input-number.js
function isValueNumber(value) { return (/(^-?[0-9]+\.{1}\d+$) | (^-?[1-9][0-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: { max: { type: Number, default: Infinity }, min: { type: Number, default: -Infinity }, value: { type: Number, default: 0 } }, data: function () { return { currentValue: this.value } }, watch: { currentValue: function (val) { this.$emit('input', val); this.$emit('on-change',val); }, value: function (val) { this.updateValue(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.currentVaule <= this.min) return; this.currentValue -= 1; }, handleUp: function () { if(this.currentVaule >= 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.currentValue = max; }else if(val < min){ this.currentValue = min; } }else{ event.target.value = this.currentValue; } } }, mounted: function () { this.updateValue(this.value); } });
根實例
var app = new Vue({ el: '#app', data: { value: 5 } });
更多教程點(diǎn)擊《Vue.js前端組件學(xué)習(xí)教程》,歡迎大家學(xué)習(xí)閱讀。
關(guān)于vue.js組件的教程,請大家點(diǎn)擊專題vue.js組件學(xué)習(xí)教程進(jìn)行學(xué)習(xí)。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
vue實現(xiàn)帶小數(shù)點(diǎn)的星星評分
這篇文章主要為大家詳細(xì)介紹了vue實現(xiàn)帶小數(shù)點(diǎn)的星星評分,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2021-09-09Vue?2?如何添加?register-service-worker?實現(xiàn)緩存請求的問題
這篇文章主要介紹了Vue?2?如何添加?register-service-worker?以實現(xiàn)緩存請求的目的,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-11-11關(guān)于ElementUI自定義Table支持render
這篇文章主要介紹了關(guān)于ElementUI自定義Table支持render,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-10-10vue中使用elementUI自定義校驗及點(diǎn)擊提交不生效問題解決辦法
我們在項目中經(jīng)常會用到ElementUI的表單驗證,下面這篇文章主要給大家介紹了關(guān)于vue中使用elementUI自定義校驗及點(diǎn)擊提交不生效問題解決的相關(guān)資料,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下2023-12-12Vue Element前端應(yīng)用開發(fā)之用戶管理模塊的處理
本篇隨筆以權(quán)限管理模塊中的用戶管理為媒介,進(jìn)行相關(guān)功能的介紹和界面設(shè)計的處理。2021-05-05