您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關vue實現計步器功能的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1.首先先創(chuàng)建一個Stepper.vue
<template> <div class="counter-component"> <div class="counter-btn" @click="mins" :class="{ active: muber==min }">-</div> <input type="text" v-model="muber" @keyup="keyUpnumberVal" /> <div class="counter-btn" @click="adds" :class="{ active: muber==max }">+</div> </div> </template> <script> export default { name: "Stepper", data() { return { muber: 1 }; }, props: { min: { type: Number, default: 1 }, max: { type: Number, default: 5 }, disabled, }, methods: { mins() { if (this.muber <= this.min) { return; } this.muber--; this.$emit("countNumber", this.muber); }, adds() { if (this.muber >= this.max) { return; } this.muber++; this.$emit("countNumber", this.muber); }, keyUpnumberVal() { let numValue; if (typeof this.muber === "string") { } this.$emit("countNumber", this.muber); } } }; </script> <style lang="less" scoped> .counter-component { position: relative; display: inline-table; overflow: hidden; vertical-align: middle; } .counter-show { float: left; } input { display: inline-block; border: none; border-top: 1px solid #e3e3e3; border-bottom: 1px solid #e3e3e3; height: 25px; line-height: 25px; width: 30px; text-align: center; outline: none; text-align: center; background: #fff; } .counter-btn { border: 1px solid #e3e3e3; display: inline-block; height: 25px; line-height: 25px; width: 25px; text-align: center; cursor: pointer; } .counter-btn:hover { border-color: #4fc08d; background: #4fc08d; color: #fff; } .active { background: rgb(182, 181, 181); } </style>
2.然后頁面加載
import Stepper from "./Stepper/Stepper"; <Stepper :min="Numbers" :max="maxNumbers" @countNumber="getFeslaves('countNumber',$event)"></Stepper> data(){ return { Numbers: 1, maxNumbers: 5 } }
關于“vue實現計步器功能的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。