标签: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