Please I'm still new using VueJs and am working on a new project and I'm having issues adding images and text in Element UI Carousel for Vue, please how do I add images and text in the Carousel?
<el-carousel :interval="4000" type="card" height="400px"> <el-carousel-item v-for="item in 6" :key="item"> <h3 class="medium">{{ item }}</h3> </el-carousel-item> </el-carousel> </template> <script> export default { data(){ return{ } } } </script> Here is the link to CodeSandbox https://codesandbox.io/s/staging-sky-o82gq?file=/src/App.vue