2018-09-21

2018-10-12  本文已影响0人  芯域倪

水果列表
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id='app'>
<my-father></my-father>
</div>
<script src='js/vue.js'></script>
<script>
Vue.component('my-father',{
template:<div> <input type="text" v-model="inputVal"> <button @click='add'>添加</button> <my-child v-bind:fruit='list'></my-child> </div>,
data:function(){
return{
list:['apple','pear','orange'],
inputVal:''
}
},
methods:{
add:function(){
this.list.push(this.inputVal);
}
}
})

    Vue.component('my-child',{
        props:['fruit'],
        template:`
          <ul>
             <li v-for="(value,index) in fruit">
                {{value}}
                 <button @click="delt(index)">删除</button>
              </li>
          </ul>
       `,
        methods:{
            delt:function(ind){
                this.fruit.splice(ind,1)
            }
        }
    })
    
    
    
    new Vue({
        el:'#app'
    })
</script>

</body>
</html>

shopping-Cart

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="css/bootstrap.css">
</head>
<body>
<div id='app'>
<my-father></my-father>
</div>
<script src='js/vue.js'></script>
<script>
Vue.component('my-father',{
template:<div class='container'> <table class='table table-bordered text-center'> <thead> <tr> <th class='text-center'>编号</th> <th class='text-center'>名称</th> <th class='text-center'>单价</th> <th class='text-center'>数量</th> <th class='text-center'>小计</th> </tr> </thead> <my-child v-bind:product='goods'></my-child> </table> </div>,
data:function(){
return{
goods:[
{pname:'apple',price:3,count:3,sub:9},
{pname:'pear',price:4,count:4,sub:16},
{pname:'orange',price:5,count:5,sub:25}
]
}
}
})

    Vue.component('my-child',{
        props:['product'],
        template:`
            <tbody>
              <tr v-for="(value,index) in product">
                 <td>{{index+1}}</td>
                 <td>{{value.pname}}</td>
                 <td>{{value.price}}</td>
                 <td>
                      <button @click='add(index)'>+</button>
                      <span>{{value.count}}</span>
                     <button @click='redu(index)'>-</button> 
                  </td>
                 <td>{{value.sub}}</td>
              </tr>
              <tr>
                  <td colspan=5>总价:{{sum}}</td>
              </tr>
            </tbody>
        `,
        data:function(){
            return{
                sum:0
            }
        },
        methods:{
            add:function(ind){
                this.product[ind].count++;
                //小计、
                this.product[ind].sub=this.product[ind].count*this.product[ind].price;
                this.countSum();
                 
            },
            redu:function(ind){
                if(this.product[ind].count>1){
                   this.product[ind].count--;
                }
                //小计
                  this.product[ind].sub=this.product[ind].count*this.product[ind].price;
                 this.countSum();
            },
            countSum:function(){
                for(var i=0,total=0;i<this.product.length;i++){
                    total+=this.product[i].sub;
                }
                this.sum=total;
            }
            
            
        }
    })
    
    
    new Vue({
        el:'#app'
    })
</script>

</body>
</html>

子传父

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div id='app'>
<my-father></my-father>
</div>
<script src='js/vue.js'></script>
<script>
Vue.component("my-father",{
template:<div> <my-child @send='revMsg'></my-child> <a href="#">{{mess}}</a> </div>,
data:function(){
return{
mess:''
}
},
methods:{
revMsg:function(txt){
this.mess=txt
}
}
})

   Vue.component("my-child",{
       template:`
          <button @click='sendMsg'>按钮</button>
       `,
       data:function(){
           return{
               msg:'我是子组件中的数据,要传给父组件'
           }
       },
       methods:{
           sendMsg:function(){

// this.emit('事件',参数) this.emit('send',this.msg)
}
}

   })
    
   new Vue({
       el:'#app'
   })

</script>

</body>
</html>

上一篇下一篇

猜你喜欢

热点阅读