vue组件

组件(component): 是vue最强大的功能之一 组件化开发
组件可以扩展 HTML 元素,封装可重用的代码。
全局
局部

组件之间的传值******
父传子 用属性传
子传父 用事件传
同级之间传值

全局组件

例:

<div id='app'>
   <my-component></my-component>  
</div>
<script src='js/vue.js'></script>
<script>
    //全局:
    Vue.component('my-component',{
        template:`
         <div>
          <h1>这是一个组件</h1>
          <ul>
           <li>1111</li>
           <li>1111</li>
           <li>1111</li>
           <li>1111</li>
          </ul>
       </div>     
        `
    })
    
    new Vue({
        el:'#app',

    })

</script>

局部组件

例:

<div id='app'>
  <asd></asd>
</div>
<script src='js/vue.js'></script> 
<script>
 new Vue({
     el:'#app',
         data:{},
     
     components:{
         'asd':{
             template:`
         <div>
          <h1>这是一个组件</h1>
          <ul>
           <li>1111</li>
           <li>1111</li>
           <li>1111</li>
           <li>1111</li>
          </ul>
       </div>     
        `
         }
      }
 }) 
</script>

例子:

点击弹出窗口
<div id='app'>
   <my-component></my-component>
 </div>
 <script src='js/vue.js'></script>
<script>
   Vue.component("my-component",{
       template:`
            <div>
                <h1>{{msg}}</h1>
                <button @click='alt'>按钮</button>
            </div>
          `,
       data:function(){
           return{
               msg:'dcgf'
           }
       },
       methods:{
           alt:function(){
               alert(11111) 
           }
       }
   })
   new Vue({
       el:'#app',
       
   })
</script>
父传子
<div id='app'>
     <my-content></my-content>
   
 </div>
 <script src='js/vue.js'></script>
 <script>
   Vue.component("my-content",{
       
       template:`
          <div>
             <h2>我是my-content组件的标题</h2>
             <my-child v-bind:message='msg'></my-child>

         </div>
        `,
        data:function(){
            return{
                msg:'dgddbghfghfnh'
            }
        }
   }) 
   
   Vue.component("my-child",{
       props:['message'],
       template:`
          <div>
           <h3>我是my-child组件中的标题</h3>
           <p>{{message}}</p>
          </div>
        `
   })
   new Vue({
      el:'#app'
   })

</script>
水果列表
<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='fruit'> <button @click='add'>添加</button>
          <my-child v-bind:fruList='list'></my-child>
       </div>
     `,
      data:function(){
          return{
              list:['apple','pear','orange'],
              fruit:''
          }
      },
      methods:{
          add:function(){
              this.list.push(this.fruit)
          }
      }
  })   
 
  Vue.component('my-child',{
      props:['fruList'],
      template:`
             <ul>
                <li v-for="(value,index) in fruList">
                     {{value}}
                      <button @click='delt(index)'>删除</button>
                 </li>
              </ul>
         `,
      methods:{
          delt:function(ind){
              this.fruList.splice(ind,1)
          }
      }
  })
   
   new Vue({
       el:'#app'
   }) 
 </script>
子传父
<div id='app'>
       <my-father></my-father>
</div>
<script src='js/vue.js'></script>
<script>
    Vue.component('my-father',{
        template:`
            <div>
               <h1>{{mess}}</h1>
               <my-child @send='revMsg'></my-child>
            </div>
         `,
        data:function(){
            return{
                mess:''
            }
        },
        methods:{
           revMsg:function(txt){
               this.mess=txt
           }
         }
    })
    
    Vue.component('my-child',{
        template:`
             <button @click='sendFather'>给父组件</button>
         `,
        data:function(){
            return{
                msg:'共产主义接班人'
            }
        },
        methods:{
            sendFather:function(){
 //                   this.$emit('自定义事件',参数) 
                      this.$emit('send',this.msg)
            }
        }
    })
    
    
    new Vue({
        el:"#app"
    })
</script>
子组件像父组件传值
<div id='app'>
     <father></father>
 </div>
<script src='js/vue.js'></script>
<script>
    Vue.component('father',{
        template:`
          <div>
            <h1>{{mess}}</h1>  
            <son @send='rcvMsg'></son>
          </div>
         `,
        data:function(){
            return{
               mess:'' 
            }
            
        },
        methods:{
            rcvMsg:function(txt){
                this.mess=txt;
            }
        }
    })
    
     Vue.component('son',{
        template:`
            <button @click='sendToFather'>我是子组件,我要向父组件传值</button>
          `,
         data:function(){
             return{
                 msg:'子组件向父组件传值'
             }
         },
         methods:{
             sendToFather:function(){
                 this.$emit('send',this.msg )
             }
         }
    })
   new Vue({
       el:"#app",
       
   })
</script>
购物车
<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:list='fruList'></my-child>
          </table>
        </div>
       `,
       data:function(){
           return{
               fruList:[
                   {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:['list'],
      template:`
         <tbody>
             <tr v-for="(value,index) in list">
                <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.list[ind].count++ ;
              //计算小计
              this.list[ind].sub=this.list[ind].count*this.list[ind].price;
              this.countSum();
          },
          redu:function(ind){
              if(this.list[ind].count>1){
                 this.list[ind].count--
              }  
               //计算小计
              this.list[ind].sub=this.list[ind].count*this.list[ind].price;
              this.countSum();
          },
          countSum:function(){
              for(var i=0,total=0;i<this.list.length;i++){
                  total+=this.list[i].sub;
              } 
              this.sum=total;
          }
      }
  }) 
   new Vue({
       el:'#app'
   })
</script>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容