[Vuejs]-How get one single component (carousel) from element-ui if is imported as global config object?

0👍

Easy. Make reference on element via ref attribute like this:

<el-carousel ref="myreference"></el-carousel>

and after this access:

console.log(this.$refs.myreference);

Leave a comment