Vue组件详解

使用组件的原因: 提高代码可复用性

组件的使用方法

  1. 全局注册
HTML:
<div id="app" v-cloak>    
    <my-component></my-component>  
</div>
JS:
Vue.component('myComponent',{    
    template: '<div>我是一个组件</div>'  
})  
var app = new Vue({    
    el: '#app'  
})
优点:所有的Vue实例都可以用 
缺点:权限太大,容错率降低
  1. 局部注册
<div id="app" v-cloak>    
    <my-component></my-component>  
</div>
var app = new Vue({    
    el: '#app',    
    components:{      
        'myComponent':{    
            template: '<div>我是一个组件</div>'      
        }    
    }  
})

3. vue组件的模板在某些情况下会受到html标签的限制,比如<table>中只能含有<tr><td> ,

这些元素,所以直接在table中使用组件是无效的,此时可以使用is属性来挂载组件

<table>          
    <tbody is="my-component"></tbody>        
</table>

组件使用的技巧

1. 推荐使用小写字母加­进行命名(必须)

2. template中的内容必须被一个DOM元素包括 ,也可以嵌套

3. 在组件的定义中,除了template之外的其他选项—data,computed,methods

4. data必须是一个方法

<div id="app" v-cloak>      
    <button-component></button-component>  
</div>
components:{      
    'button-component':{        
        template: '<button @click="count+=1">{{count}}</button>',        
        data: function(){          
            return { count: 0  }        
        }      
    }    
}

使用props传递数据 父亲向儿子传递数据

1. 在组件中使用props来从父亲组件接收参数,注意,在props中定义的属性,都可以在组件中直接使用

2. props来自父级,而组件中data return的数据就是组件自己的数据,两种情况作用域就是 组件本身,可以在template,computed,methods中直接使用

3. props的值有两种,一种是字符串数组,一种是对象,本节先只讲数组

4. 可以使用v­-bind动态绑定父组件来的内容

父组件传数据给子组件

<div id="app" v-cloak>    
    <p>我是父组件</p>      
    <child-component message="听妈妈的话,别让她受伤"></child-component>  
</div>

var app = new Vue({    
    el: '#app',    
    components:{      
        'child-component':{        
            props:['message'],        
            template: '<button>{{message}}</button>'      
        }    
    }  
})

使用v­-bind动态绑定父组件来的内容

<div id="app" v-cloak>    
    <input type="text" v-model="message">    
    <child-component :msg="message"></child-component>  
</div>

var app = new Vue({    
    el: '#app',    
    data:{message: ''},    
    components:{      
        'child-component':{        
            props:['msg'],        
            template: '<button>{{msg}}</button>'      
        }    
    }  
})

效果

input输入框里的内容会同步到子组件button按钮内

image.png

单向数据流

解释 : 通过 props 传递数据是单向的,也就是父组件数据变化时会传递给子组件,但是反过来不行

目的 :是尽可能将父子组件解稿,避免子组件无意中修改了父组件的状态。

应用场景: 业务中会经常遇到两种需要改变 prop 的情况

一种是父组件传递初始值进来,子组件将它作为初始值保存起来,在自己的作用域下可以随意使用和修改。这种情况可以在组件 data 内再声明一个数据,引用父组件 的 prop

步骤一:注册组件

步骤二:将父组件的数据传递进来,并在子组件中用props接收

步骤三:将传递进来的数据通过初始值保存起来

<div id="app">    
    <my-component init-count="666"></my-comp>  
</div>
var app = new Vue({    
    el: '#app',    
    components: {      
        'my-component': {        
            props: ['init-count'],        
            template: '<div>{{count}}</div>',        
            data: function () {          
                return {            
                count: this.initCount          
                }        
            }      
        }    
    }  
})

另一种情况就是 prop 作为需要被转变的原始值传入。这种情况用计算属性就可以了

步骤一:注册组件

步骤二:将父组件的数据传递进来,并在子组件中用props接收

步骤三:将传递进来的数据通过计算属性进行重新计算

通过计算属性动态控制元素的宽度

<div id="app" v-cloak>    
    <input type="text" v-model="width">    
    <child-component :width="width"></child-component>  
</div>

var app = new Vue({    
    el: '#app',    
    data:{width: 0 },    
    components:{      
        'child-component':{        
            props:['width'],        
            template: '<div :style="style"></div>',        
        computed:{          
            style: function(){            
                return {              
                width: this.width+'px',              
                height: '20px',              
                background: 'grey'            
                    }          
                }        
            }      
        }    
    }  
})

数据验证

vue组件中camelCased (驼峰式) 命名与 keba-b­case(短横线命名)

1. 在html中, myMessage 和 mymessage 是一致的,,因此在组件中的html 中使用必须使用kebab-­case(短横线)命名方式。在html中不允许使用驼峰!!!

2. 在组件中, 父组件给子组件传递数据必须用短横线。在template中,必须使用驼峰命名,若为短横线的命名方式。则会直接保错。

3. 在组件的data中,用this.XXX引用时,只能是驼峰命名方式。若为短横线的命名方式,则会报错。

验证的 type 类型可以是:

• String

• Number

• Boolean

• Object

• Array

• Function

Vue.component ( 'my-compopent', {
props : {
//必须是数字类型
propA : Number ,
//必须是字符串或数字类型
propB : [String , Number] ,
//布尔值,如果没有定义,默认值就是 true
propC: {
type : Boolean ,
default : true
},
//数字,而且是必传
propD: {
type: Number ,
required : true
},
//如果是数组或对象,默认值必须是一个函数来返回
propE: {
type : Array ,
default : function () {
return [] ;
}
},
//自定义一个验证函数
propF: {
validator : function (value) {
return value > 10;}
}
}
})

自定义事件—子组件给父组件传递数据

使用v­-on 除了监昕 DOM 事件外,还可以用于组件之间的自定义事件。 JavaScript 的设计模式 一一观察者模式, dispatchEvent 和 addEventListener这两个方法。 Vue 组件也有与之类似的一套模式,子组件用emit()来 触发事件 ,父组件用on()来 监昕子组件的事件 。 直接甩代码

第一步:自定义事件

第二步: 在子组件中用$emit触发事件,第一个参数是事件名,后边的参数是要传递的数据

第三步:在自定义事件中用一个参数来接受

<div id="app">    
    <p>要买多少个苹果? {{number}}</p>    
    <child-component @change="change"></child-component>  
</div>
var app = new Vue({    
    el: '#app',    
    data: {      number: 200    },    
    methods: {      
        change: function (value) {        
        this.number = value      
        }    
    },    
    components: {      
        'child-component': {           
        data: function () {          
            return { count: 200  }        
    },        
    template: `<div><button @click="add">+1</button><button @click="reduce">-1</button></div>`,        
    methods: {          
        add: function () {            
                this.count += 1            
                this.$emit('change', this.count)          
        },          
        reduce: function () {            
            this.count -= 1            
            this.$emit('change', this.count)          
                }        
            }      
        }    
    }  
})

效果:

image.png

在组件中使用v­-model

$emit的代码,这行代码实际上会触发一个 input事件, ‘input’后的参数就是传递给v­-model绑定 的属性的值 v­-model 其实是一个语法糖,这背后其实做了两个操作

  • v­-bind 绑定一个 value 属性
  • v-­on 指令给当前元素绑定 input 事件

要使用v­-model,要做到:

  • 接收一个 value 属性。
  • 在有新的 value 时触发 input 事件
<div id="app">    
    <p>您要买多少个苹果? {{number}}</p>    
    <child-component v-model="number"></child-component>  
</div>
var app = new Vue({    
    el: '#app',    
    data: {      
        number: 200    
    },    
    components: {      
        'child-component': {        
    data:function(){return{count:200}},        
    template: `<button @click="add">+1</button>`,        
    methods: {          
        add: function () {            
            this.count += 1        
----------------------注意观察.这一行,emit的是input事件----------------    
            this.$emit('input', this.count)          
            }        
        }      
    }    
}  
})

非父组件之间的通信

可以用一个空的Vue实例作为中央事件总线:

var bus = new Vue()
// 触发事件
bus.$emit('事件名', 1)
//如果是子组件, this.$root.bus

// 监听事件
bus.$emit('事件名', function(id){
    // .....
})

代码:

<div id="app">    
    <my-component></my-component>    
    <child-component></child-component>  
</div>
var app = new Vue({    
    el: '#app',    
    data: { bus: new Vue() },    
    components: {      
        'my-component': {        
        data:function(){          
            return {            
                text: '我是A组件里的text'          
            }        
        },        
    template: '<div><button @click="onclick">点我</button></div>',        
    methods:{          
        onclick: function(){            
            this.$root.bus.$emit('send',this.text)          
            }        
        }      
    },      
    'child-component': {        
        template: '<div>第二个组件</div>',        
        created: function(){          
            this.$root.bus.$on('send',function(value){            
            alert(value)          
                })        
            }      
        }    
    }  
})

点击A组件里的按, 就会触发send事件, 同时把数据发出去, B组件监听send事件, 获取传过来的数据

父链: this.$parent

this.$parent.msg = '数据已经修改了'

子链:

this.$refs 提供了为子组件提供索引的方法,用特殊的属性ref为其增加一个索引

// 给子组件添加ref属性
this.formchild = this.$refs.c.msg;

使用slot分发内容

什么是slot(插槽)

为了让组件可以组合,我们需要一种方式来混合父组件的内容与子组件自己的模板。这个过程被称为内容分发. Vue.js 实现了一个内容分发API,使用特殊的 ‘slot’ 元素作为原始内容的插槽

编译的作用域

在深入内容分发 API 之前,我们先明确内容在哪个作用域里编译。假定模板为:

<child-component>
    {{ message }} 
</child-component>

message 应该绑定到父组件的数据,还是绑定到子组件的数据?答案是父组件。组件作用 域简单地说是:

父组件模板的内容在父组件作用域内编译;

子组件模板的内容在子组件作用域内编译。

插槽的用法

父组件的内容与子组件相混合,从而弥补了视图的不足

混合父组件的内容与子组件自己的模板

单个插槽:

<div id="app">    
    <child-component>     
        slot, 接着    
    </child-component>  
</div>

components: {      
    'child-component': {
        template: `<div><slot>如果父组件没有插入内容,我就作为默认出现</slot></div>`      
    }    
}

具名插槽:

模板占位slot 通过slot 和name属性进行关联

<div id="app">    
    <child-component>      
        <p slot="header">我是标题</p>      
        <p>文本内容第一部分</p>      
        <p>文本内容第二部分</p>      
        <p slot="footer">我是页脚</p>    
</child-component></div>
components: {      
    'child-component': {        
        template: `<div>                    
            <div class="header">                      
                <slot name="header"></slot>                    
            </div>                    
            <div>                      
                <slot></slot>                    
            </div>                    
            <div class="footer">                      
                <slot name="footer"></slot>                    
            </div>                  
        </div>                  `      
    }    
}

效果:

image.png

作用域插槽:

作用域插槽是一种特殊的slot,使用一个可以复用的模板来替换已经渲染的元素 ——从子组件获取数据 ,template模板是不会被渲染的

<child-component>      
    <template slot="child" slot-scope="parent">        
        {{parent.text}}      
    </template>    
</child-component>
components: {      
    'child-component': {        
    template: `          
        <div>            
            <slot text="子组件里的text" name="child"></slot>          
        </div>`      
    }    
}

Vue 2.5.0之前, slot-scope只能写在template标签上

访问slot

通过this.$slots.(NAME)

mounted:function () { 
    //访问插槽
    var header = this.$slots.header;
    var text = header[0].elm.innerText;
    var html = header[0].elm.innerHTML;
    console.log(header)
    console.log(text)
    console.log(html)
}

组件高级用法–动态组件

VUE给我们提供了一个元素叫component 作用是:

用来动态的挂载不同的组件

实现:使用is特性来进行实现的

// 点击不同的按钮, 渲染不同的组件

<div id="app">    
    <component :is="thisView"></component>    
    <button @click="selected('A')">一</button>    
    <button @click="selected('B')">二</button>    
    <button @click="selected('C')">三</button>  
</div>
var app = new Vue({    
    el: '#app',    
    data: {  thisView: 'compA' },    
    methods:{      
        selected:function(tag){        
        this.thisView = 'comp' + tag      
        }    
    },    
    components: {      
        'compA': {        
            template: '<div>一个和尚挑水喝</div>'      
        },      
        'compB': {        
            template: '<div>两个和尚抬水喝</div>'      
        },      
        'compC': {        
            template: '<div>三个和尚没水喝</div>'      
        }    
    }  
})
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,529评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,015评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,409评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,385评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,387评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,466评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,880评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,528评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,727评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,528评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,602评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,302评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,873评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,890评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,132评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,777评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,310评论 2 342