利用vue3自己實現計數功能組件封裝實例
前言
本文將帶你用vue3自己封裝一個實現計數功能的全局組件,其應用場景相信各位一看便知,那就是購物網站中常見的數量選擇模塊,一起來看看如何實現哇
一、封裝的意義
- 項目中需要用到的地方較多
- 模塊化開發,降低瞭代碼冗餘,是開發更加高效
- 一次封裝,到處使用
二、如何封裝?
1. 思路
使用vue3中v-model來完成父子組件之間的相互傳值,本文章使用vueuse/core中封裝好的useVModel來實現這一功能
將需要控制的值從封裝的公共組件中拋出去
2. 準備
安裝依賴
項目根目錄下打開任意終端,執行npm install @vueuse/[email protected]
封裝全局組件
還是和之前文章做法一樣,通過vue插件的方式註冊為全局組件
註:本文將封裝的全局組件放至src/components下,各位小夥伴兒可以自己決定文件位置及名字
新建文件my-numbox.vue文件
代碼如下(示例):
<template> <div class="my-numbox"> <div class="label"> <slot>數量</slot> </div> <div class="numbox"> <a href="javascript:;" @click="toggle(-1)" :class="{notallow: modelValue === 1}">-</a> <input type="text" readonly :value="num"> <a href="javascript:;" @click="toggle(1)" :class="{notallow: modelValue === inventory}">+</a> </div> </div> </template> <script> import { useVModel } from '@vueuse/core' export default { name: 'MyNumbox', props: { modelValue: { type: Number, default: 1 }, inventory: { type: Number, required: true } }, setup (props, { emit }) { // 基於第三方的方法控制數據的雙向綁定 const num = useVModel(props, 'modelValue', emit) // 控制商品數據的變更操作 const toggle = (n) => { if (n < 0) { // 減一操作 if (num.value > 1) { num.value -= 1 } } else { // 加一操作 if (num.value < props.inventory) { num.value += 1 } } } return { num, toggle } } } </script> <style scoped lang="less"> .my-numbox { display: flex; align-items: center; .notallow { cursor: not-allowed; } .label { width: 60px; color: #999; padding-left: 10px; } .numbox { width: 120px; height: 30px; border: 1px solid #e4e4e4; display: flex; > a { width: 29px; line-height: 28px; text-align: center; text-decoration: none; background: #f8f8f8; font-size: 16px; color: #666; &:first-of-type { border-right:1px solid #e4e4e4; } &:last-of-type { border-left:1px solid #e4e4e4; } } > input { width: 60px; padding: 0 5px; text-align: center; color: #666; } } } </style>
通過vue插件方式註冊為全局組件的步驟這裡就不給大傢演示瞭,各位可以看一下之前的文章
vue3——自己實現放大鏡效果
2. 使用
在任意.vue結尾的文件中使用即可
代碼如下(示例):
組件標簽內容會覆蓋公共組件中默認插槽中的內容
inventory為庫存數量,即用戶可以選擇數量的最大數值(這裡先給一個固定數值,給大傢演示一下)
<template> <div class="home-banner"> <MyNumbox v-model="num" :inventory="5">件數:</MyNumbox> </div> </template> <script> import { ref } from 'vue' export default { name: 'App', setup () { const num = ref(1) return { num } } } </script> <style lang="less"> .home-banner { margin: 100px auto; width: 500px; height: 100px; } </style>
三、 效果演示
可以看到已經實現瞭我們的需求,當達到最大值或者最小值後,點擊按鈕就會禁用。
總結
到此這篇關於利用vue3自己實現計數功能組件封裝實例的文章就介紹到這瞭,更多相關vue3計數功能組件內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!