码迷,mamicode.com
首页 > 其他好文 > 详细

vue 的 component

时间:2018-05-26 10:48:12      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:vue   字符   挂载   浏览器   this   显示   bsp   eve   数据   

component 组件 

注册:

  1全局注册 : 可以在 各vue实例 中使用

Vue.component(‘tag-name‘,{
  //options
  ...
})

  2局部注册 : 只能在注册他的vue实例中使用

技术分享图片
new Vue({

components:{
  ‘tag-name‘:{
  //options
  .....
}
}
})
View Code

is 作用

 当组件挂载在已存在的元素上时。遇到某些元素,浏览器是不认的:<ul>, <table> <ol>,...

这时,就要使用is 关键字

<ul>
    <li is="tag-name"></li>
</ul>

 

props,events ,slots:组件中数据的传递

父组件通过props 向下传递数据给子组件,子组件通过events 给父组件发送消息

events
//父组件
<father :balala="balalaFun">
   .....    
    <child></child>
</father>

//子组件
{
name:‘child‘,
    methods:{
    bababa(){
    return this.$emit(‘balalaFun‘);//触发自定义事件
}
}
}
<father :da="dada">
 <child></child>    
</father>

//子组件
{
name:‘child‘,
props:[da]
}

slots:模板引擎之类的,在组件中插入内容机制

子组件中定义默认内容,若父组件不向子组件 添加任何字符串时,会显示子组件的默认内容

//子组件
<div>
     <h1>hhhh</h1>
    <solt>
       <h2>22222</h2>
   </solt>
</div>

//父组件
<div>
   <child>
       <h3>replace to 22222</h3>
   </child>
<div>

动态组件:为了适应页面局部刷新   一处地方应用多个组件

<component is=" boolean ? component1 : component2 ...:"></component>

结合is  进行判断,确定是显示1还是2组件~~~~

 

vue 的 component

标签:vue   字符   挂载   浏览器   this   显示   bsp   eve   数据   

原文地址:https://www.cnblogs.com/smallMoody/p/9091333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!