This article shares the specific code of Vue to implement a simple shopping cart case for your reference. The specific content is as follows Code: <template> <div> <div> <span>Mobile: </span> <span>Price</span> <input type="number" v-model.number="phonePrice"> <span> Quantity</span><input type="number" v-model.number="phoneCount"> <span>Subtotal: </span><span>{{phoneTotal}} yuan</span> </div> <div> <span>Computer: </span> <span>Price</span> <input type="number" v-model.number="computerPrice"> <span> Quantity</span><input type="number" v-model.number="computerCount"> <span>Subtotal: </span><span>{{computerTotal}} yuan</span> </div> <div> <span>Shipping fee: </span><input type="number" v-model.number="freight"><span>Yuan</span><br> <span>Total: {{total}} yuan</span> <p>Discount: {{discounts}} yuan</p> <p>Payable: {{allPrice}}</p> </div> </div> </template> <script> export default { data () { return { phonePrice: '', // price of a phone phoneCount: '', // number of phones computerPrice: '', // price of a computer computerCount: '', // number of computers frequency: '', // freight discounts: '' } }, computed: { phoneTotal() { return this.phonePrice * this.phoneCount }, computerTotal() { return this.computerPrice * this.computerCount }, //Total price total () { return this.computerTotal + this.phoneTotal + this.freight }, allPrice() { return this.total - this.discounts } }, watch: total: depp: true, handler () { if (this.phoneTotal + this.computerTotal > 5000 && this.phoneTotal + this.computerTotal < 8000) { this.discounts = 100 } else if (this.phoneTotal + this.computerTotal > 8000) { this.discounts = 200 } } } } } </script> <style scoped lang='less'> </style> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Nginx builds rtmp live server implementation code
>>: Implementation of proxy_pass in nginx reverse proxy
I have read countless my.cnf configurations on th...
Through the study and application of Node, we kno...
Today I learned a new CSS special effect, the wav...
Table of contents question Solution question Ther...
Table of contents Introduction Introduction Aggre...
Table of contents background Server Dependencies ...
Table of contents Registering Components Adding C...
Imagine a scenario where, when designing a user t...
Today I will introduce the most basic functions of...
Table of contents 1. Basic understanding of React...
Table of contents question extend Solving the pro...
Application Scenario Taking the background manage...
1. Introduction It has been supported since versi...
The environment of this article is Windows 10, an...
Table of contents 1. Prepare data Create a data t...