01/10/2018, 17:21
Vue slot user info sao không chạy?
Ace cho mình hỏi tại sao cái slot này không chạy?
Vue.component('user-info',{
template:`
<div style="margin:5px;">
<h1>User info</h1>
Hi! <slot></slot>
</div>
`,
})
Vue.component('user-name',{
props:["ten"],
template:`<span>{{ten}}</span>`,
})
<div class="d-flex">
<user-info v-for=" x in ['tèo','tí','teo'] " >
<user-name ten="{{x}}"></user-name><!--Cái này không chạy-->
</user-info>
</div>
Bài liên quan