vue.js 实现购物车加减方法
Posted 安心牧羊人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js 实现购物车加减方法相关的知识,希望对你有一定的参考价值。
<template>
<div class="coutter-wrapper">
<button type="button" @click="plus">+</button>
<button type="button">{{ result }}</button>
<button type="button" @click="minus">-</button>
</div>
</template>
<script>
export default {
data() {
return {
result: 0,
}
}
,methods: {
minus() {
this.result--;
this.$emit(‘input‘, {res: this.result, other: ‘--‘})
},
plus() {
this.result++;
this.$emit(‘input‘, {res: this.result, other: ‘++‘})
}
}
}
</script>
<style lang="stylus" scoped>
button
border 0
outline 0
border-radius 3px
button:nth-child(2)
width 200px
</style>
以上是关于vue.js 实现购物车加减方法的主要内容,如果未能解决你的问题,请参考以下文章