vue的组件开发

1.概念

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <div id="app">
       <msg></msg>
   </div>
    <script src="js/vue.js"></script>
    <script>
       /* 组件:组件化开发(component)扩展HTML元素,封装可用的代码,
        可以连续被调用,注意:组件命名不可以使用已经存在的标签名,有同级元素
        时候,必须要有一个父集元素,*/
    /* 全局组件   Vue.component("msg(组件名)",{
            template:`
                 <ul>
                     <li>首页</li>
                     <li>导航</li>
                     <li>信息</li>
                 </ul>        
             `
        })*/
        new Vue({
            el:"#app",
          /*局部组件*/  components:{
                "msg":{
                    template:`
                   <div>
                      <h1>我是组件</h1>
                      <a>我也是</a>
                   </div>
                `
                }
            }
        })
    </script>
</body>
</html>

2.组件的补充

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <!--组件中data数据是一个函数,并有一个返回值,组件中的方法和newvue中相同-->
   <!--组件的data的数据是一个函数,并有一个返回值,-->
   <div id="app">
       <msg></msg>
   </div>
    <script src="js/vue.js"></script>
    <script>
       Vue.component("msg",{
            template:`
                <div>
                    <p>{{num}}</p> 
                    <button @click="atl">你好</button>
                </div>     
             `,
           data:function(){
               return{
                   num:"我是组件"
               }
           },
           methods:{
               atl:function(){
                   alert("你好")
               }
           }
        })
        new Vue({
            el:"#app"
        })
    </script>
</body>
</html>

3.组件的嵌套

<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>
                    <h1>我是父组件</h1>
                    <my-child></my-child>
                </div>
            `
        }),
        Vue.component("my-child",{
            template:`
                <ul>
                    <li>子组件1的内容</li>
                    <li>子组件2的内容</li>
                    <li>子组件3的内容</li>
                </ul>
            `
        })
       new Vue({
           el:"#app"
       })
    </script>
</body>
</html>

4.父给子传值,用属性值,(父集元素在子集中显示,在整体传给父集在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>
                  <h1>我是父组件</h1>
                  <my-child v-bind:num="msg"></my-child>
                  <my-child1 v-bind:num1="list"></my-child1>
              </div>
          `,
          data:function(){
              return{
                  msg:"我是父组件中的内容",
                  list:["电视剧","电影","游戏"]
              }
          }
      })
      Vue.component("my-child",{
          props:["num"], 
          template:`
              <ul>
                  <li>子组件1的内容</li>
                  <li>子组件2的内容</li>
                  <li>子组件3的内容</li>
                  <a herf="#">{{num}}</a>
              </ul>
          `
      })
      Vue.component("my-child1",{
          props:["num1"],
          template:`
              <ul>
                  <li v-for="value in num1">{{value}}</li>
              </ul>
          `
      })
     new Vue({
         el:"#app"
     })
  </script>
</body>
</html>

4.运用组件制作购物车方法一

<!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>

5.用组件制作购物车方法二

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
     <style>
        *{
            margin: 0px;
            padding: 0px;
        }
         #app td{
            width: 300px;
            height: 40px;
            border: 1px solid #ccc;
            text-align: center;
        }
        #app{
            margin-left: 3%;
            margin-top: 100px;
        }
         #app p{
            width: 1510px;
             height: 40px;
           text-align: center;
           line-height: 40px;
            border: 1px solid #ccc;
        }
    </style>
</head>
<body>
   <div id="app">
       <father></father>
   </div>
    <script src="js/vue.js"></script>
    <script>
        Vue.component("father",{
            template:`
               <div>
                     <child v-bind:num="list"></child>
                     <child1 v-bind:num1="fruit"></child1>
                </div>
            `,
            data:function(){
                return{
                   list:["编号","名称","单价","数量","总价"],
                   fruit:[
                        {name:"香蕉",priec:1,num:0,add:0},
                        {name:"苹果",priec:2,num:0,add:0},
                        {name:"鸭梨",priec:3,num:0,add:0},
                    ],
                }
            }
        })
        Vue.component("child",{
            props:["num"],
            template:`
                <table cellspacing=0>
                    <thead>
                        <tr>
                            <td v-for="(val,index) in num">{{val}}</td>
                        </tr>
                    </thead>
                </table>
            `,
        })
        Vue.component("child1",{
            props:["num1"],
            template:` 
                <div>
                    <tbody>
                        <tr v-for="(val,index) in num1">
                            <td>{{index+1}}</td>
                            <td>{{val.name}}</td>
                            <td>{{val.priec}}</td>
                            <td><button v-on:click="add(index)"> + </button>{{val.num}}<button v-on:click="redu(index)"> - </button></td>
                            <td>{{val.add}}</td>
                        </tr>
                    </tbody>
                    <p>$:{{total}}</p>
                </div>
            `,
            data:function(){
                return{
                    total:0
                }
            },
            methods:{
                add:function(ind){
                    this.num1[ind].num++;
                    this.num1[ind].add=this.num1[ind].num*this.num1[ind].priec;
                    this.total+=this.num1[ind].priec
                },
                redu:function(ind){
                    if(this.num1[ind].num>1){
                        this.num1[ind].num--;
                  }
                    this.num1[ind].add=this.num1[ind].num*this.num1[ind].priec;
                    this.total-=this.num1[ind].priec
               }
            }
        })
        new Vue({
            el:"#app"
        })
    </script>
</body>
</html>

6.子组件向父组件传值(子组件中的值在父组件中显示用方法传值{事件传值},)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>

   <div id="app">
       <father></father>
   </div>
    <script src="js/vue.js"></script>
    <script>
        Vue.component("father",{
            template:`
                <div>
                    <child @send="messever"></child>
                    <a href="#">{{mess}}</a>
                </div>
            `,
            data:function(){
                return{
                    mess:""
                }
            },
            methods:{
                messever:function(txt){
                    this.mess=txt
                }
            }
        })
        Vue.component("child",{
            template:`
                <button @click="msgever">按钮</button>
            `,
            data:function(){
                return{
                    msg:"锦觅"
                }
            },
            methods:{
                msgever:function(){
                    this.$emit("send",this.msg)
                }
            }
        })
      new Vue({
          el:"#app"
      })
    </script>
</body>
</html>

7.子组件向父组件传值例子

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <div id="app">
       <father></father>
   </div>
    <script src="js/vue.js"></script>
    <script>
        Vue.component("father",{
            template:`
                <div>
                    <h1>这是父组件</h1>
                    <p>这是子组件传来的值:{{mess}}</p>
                    <child @send="e"></child>
                </div>
            `,
             data:function(){
                return{
                    mess:""
                }
            },
            methods:{
                e:function(txt){
                    this.mess=txt
                }
            }
            
        })
        Vue.component("child",{
            template:`
                <div>
                    <h1>这是子组件传</h1>
                    <input type="text" v-model="msg">
                    <button @click="add">向父组件中添加</button>
                </div>
            `,
            data:function(){
                return{
                    msg:""
                }
            },
            methods:{
                add:function(){
                    this.$emit("send",this.msg)
                    this.msg=""
                }
            }
        })
        new Vue({
            el:"#app"
        })
    </script>
</body>
</html>

8.同级之间传值(用中间量传值)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <div id="app">
       <borenth></borenth>
       <borenth1></borenth1>
   </div>
    <script src="js/vue.js"></script>
    <script>
        var bus=new Vue();
        Vue.component("borenth",{
            template:`
                <button @click=chuan>发送数据</button>
            `,
            data:function(){
                return{
                    msg:"香蜜沉沉"
                }
            },
            methods:{
                chuan:function(){
                    bus.$emit("send",this.msg)
                }
            }
        })
        Vue.component("borenth1",{
            template:`
                <h1>{{mess}}</h1>
            `, 
            data:function(){
                return{
                    mess:""
                }
            },
            mounted:function(){
                bus.$on("send",msg=>{
                    this.mess=msg
                })
            }
         })
        new Vue({
            el:"#app"
        })
    </script>
</body>
</html>

9.子传父的例子

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
   <div id='app'>
       <chat></chat>
   </div>
    <script src='js/vue.js'></script>
    <script>
       Vue.component('chat',{
           template:`
             <div>
                
                <ul>
                   <li v-for="value in arr">{{value}}</li>
                </ul>
                <user @send='rcMsg' userName='jack'></user>
                <user @send='rcMsg' userName='rose'></user>
             </div>
           `,
           data:function(){
               return{
                   arr:[]
               }
           },
           methods:{
               rcMsg:function(txt){
                   this.arr.push(txt)
               }
           }
       }) 
       
       Vue.component('user',{
           props:['userName'],
           template:`
            <div>
               <label>{{userName}}</label>
               <input type='text' v-model='inputVal'>
               <button @click='sendMsg'>发送</button>
            </div>
           `,
           data:function(){
               return{
                   inputVal:''
               }
           },
           methods:{
               sendMsg:function(){
                  this.$emit('send',this.userName+":"+this.inputVal) 
               }
           }
       })
       new Vue({
           el:'#app'
       })
    </script>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,242评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,769评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,484评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,133评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,007评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,080评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,496评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,190评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,464评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,549评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,330评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,205评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,567评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,889评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,160评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,475评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,650评论 2 335

推荐阅读更多精彩内容