vue小案例(小黑记事本和购物车)

简介: vue小案例(小黑记事本和购物车)

vue小案例


1. 小黑记事本小案例


    <footer class="footer" >
      <span class="todo-count" v-if="list.length!=0">
        <strong>{{list.length}}</strong> items left
      </span>
        <button class="clear-completed" @click="clear" v-if="list.length!=0">
            Clear
        </button>
    </footer>
</section>
<!-- 底部 -->
<footer class="info">
    <p>
        <a href="http://www.itheima.com/"><img src="../image/black.png" alt="" /></a>
    </p>
</footer>
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script>
    var app = new Vue({
        el: "#todoapp",
        data: {
            list: ["写代码", "吃饭饭", "睡觉觉"],
            inputValue: "好好学习,天天向上"
        },
        methods: {
            add: function () {
                this.list.push(this.inputValue);
            },
            remove:function(index){
                console.log("删除");
                console.log(index);
                this.list.splice(index,1);
            },
            clear:function (){
                this.list = []
            }
        },
    })
</script>
</body>
</html>

2. 购物车小案例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue实现购物车案例</title>
</head>
<body>
<div id="app">
    <div v-if="items.length">
        <h1> {{msg}}  computed{{  counts }}</h1>
        编号: <input type="text" v-model="item.id">
        名称: <input type="text" v-model="item.name">
        单价: <input type="text" v-model="item.price">
        数量: <input type="text" v-model="item.count">
        <button @click="addCount"> 添加到购物车 </button>
        <br><br><br>
        <table border="1">
            <tr>
                <th>编号</th>
                <th>名称</th>
                <th>单价</th>
                <th>数量</th>
                <th>小计</th>
                <th>操作</th>
            </tr>
            <tr v-for="(item,index) in items" :key="item.id">
                <td>{{item.id}}</td>
                <td>{{item.name}}</td>
                <td>{{item.price}}</td>
                <td><input type="button" value="-" @click="remove(index)"> {{item.count}} <input type="button" value="+" @click="add(index)"> </td>
                <td>{{item.count * item.price}}</td>
                <td><button @click="removeClick(index)">删除</button></td>
            </tr>
        </table>
        <h3>总价格: {{ totalPrice }}</h3>
        <h3>总价格: {{ totalPrice }}</h3>
        <h3>总价格: {{ totalPrice }}</h3>
    </div>
    <h1 v-else>购物车为空</h1>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script>
    var app = new Vue({
        el:'#app',
        data : {
            count:0,
            msg:'购物车案例',
            item : {},
            items:[
                {id:1,name:'iphone12',price:4899,count:1,delete:"删除"},
                {id:2,name:'redmik30pro',price:3199,count:1,delete: "删除"},
            ]
        },
        methods: {
            add:function (idx){
                this.items[idx].count++
            },
            remove:function (idx){
                if (this.items[idx].count>1) {
                    this.items[idx].count--
                } else {
                    alert('购买的商品不能少于一件')
                }
            },
            // totalPrice:function (){
            //     var totalprice = 0
            //     for (var i=0 ; i<this.items.length ; i++){
            //         totalprice +=this.items[i].price *this.items[i].count
            //     }
            //     return totalprice
            // },
            addCount:function (){
                if (!this.item.id){
                    alert('请输入编号');
                    return false
                }
                if (!this.item.name){
                    alert('请输入名称');
                    return false
                }
                if (!this.item.price){
                    alert('请输入价格');
                    return false
                }
                if (!this.item.count){
                    alert('请输入数量');
                    return false
                }
                if (!(this.item.count>0)){
                    alert('请输入正确数量');
                    return false
                }
                this.items.push(this.item)  //放入数组
            },
            removeClick(index){
                this.items.splice(index,1)
            }
        },
        computed : {
            counts:function (){
                return this.count+10
            },
            totalPrice:function (){
                // var totalprice = 0
                // // for (var i=0 ; i<this.items.length ; i++){
                // //     totalprice +=this.items[i].price *this.items[i].count
                // // }
                // for (let item of this.items) {
                //     totalprice +=item.price*item.count
                // }
                // return totalprice
                return this.items.reduce(function (pre,item){
                    return pre + item.price*item.count
                },0)
            },
        }
    })
</script>
</body>
</html>
相关文章
|
7天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
7天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
7天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
6天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
6天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
|
21天前
|
数据采集 监控 JavaScript
在 Vue 项目中使用预渲染技术
【10月更文挑战第23天】在 Vue 项目中使用预渲染技术是提升 SEO 效果的有效途径之一。通过选择合适的预渲染工具,正确配置和运行预渲染操作,结合其他 SEO 策略,可以实现更好的搜索引擎优化效果。同时,需要不断地监控和优化预渲染效果,以适应不断变化的搜索引擎环境和用户需求。
|
7天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
8天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
8天前
|
存储 JavaScript
Vue 组件间如何通信
Vue组件间通信是指在Vue应用中,不同组件之间传递数据和事件的方法。常用的方式有:props、自定义事件、$emit、$attrs、$refs、provide/inject、Vuex等。掌握这些方法可以实现父子组件、兄弟组件及跨级组件间的高效通信。
|
13天前
|
JavaScript
Vue基础知识总结 4:vue组件化开发
Vue基础知识总结 4:vue组件化开发