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

子组件引用

时间:2017-10-27 19:50:49      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:log   style   .com   class   组件   div   profile   code   span   

<body>
    <div id="parent">
        <user-profile ref="profile"></user-profile>
    </div>
    <script>
        Vue.component(‘user-profile‘,{
            template:‘<div></div>‘
        })
        var parent = new Vue({
            el:"#parent"
        })
        var child = parent.$refs.profile
        console.log(child)
    </script>
</body>

 

子组件引用

标签:log   style   .com   class   组件   div   profile   code   span   

原文地址:http://www.cnblogs.com/ItIsInteresting/p/7744877.html

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