前端Vue自定义数字输入框 带加减按钮的数字输入框组件, 下载完整代码请访问uni-app插件市场地址:https://ext.dcloud.net.cn/plugin?id=13163
效果图如下:
cc-numbox
使用方法
<!-- title: 标题 isSetMax: 是否设置最大值 maxNum: 最大值-->
<cc-numbox title="商品数量(设置最大值)" :isSetMax="true" maxNum="20"
HTML代码实现部分
<template>
<view class="content">
<view style="height: 20px;"></view>
<!-- title: 标题 isSetMax: 是否设置最大值 maxNum: 最大值-->
<cc-numbox title="基本用法" @change="numChangeClick"></cc-numbox>
<view style="height: 20px;"></view>
<!-- title: 标题 isSetMax: 是否设置最大值 maxNum: 最大值-->
<cc-numbox title="商品数量(设置最大值)" :isSetMax="true" maxNum="20" @change="numChangeClick"></cc-numbox>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
}
},
methods: {
numChangeClick(num) {
console.log("当前数量 = " + num);
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
}
</style>
标签:Vue,数字,自定义,加减,输入框,按钮
From: https://www.cnblogs.com/ccVue/p/17498723.html