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

vue技能总结

时间:2021-04-06 14:17:01      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rom   from   listeners   bin   rop   parent   methods   list   hello   

1:传值  隔代传值通过v-bind = “$attrs”.

2:传方法  v-on=“$listeners”  就可以在子组件调用父组件的方法 ,this.$emit("methodsFromParent")

3:子传父  slot 

孩子: <slot name="aa" :foo="‘fooooooooo‘"></slot>

爹 :

 <HelloWorld @foo="onFoo" bb="122121" msg="Welcome to Your Vue.js App">
       <template v-slot:default>
         <h1>我来自默认插槽</h1>
       </template>
       <template v-slot:aa="slotProps">我是aa插槽{{slotProps.foo}}</template>
    </HelloWorld>

vue技能总结

标签:rom   from   listeners   bin   rop   parent   methods   list   hello   

原文地址:https://www.cnblogs.com/binglove/p/14615400.html

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