write a component by yourself: 
 < len-carousel > 
 when using: 
   <len-carousel>
      <div v-for="(item,index) in 4" :key="index">
        {{item}}
      </div>      
   </len-carousel>how do I get the child elements of a component in a component?
