# VueJS carousel component
Vue.component('carousel', {
template: '<div :id="_uid" class="owl-carousel"><slot></slot></div>',
props: {
options: {
default: {},
},
},
mounted() {
$('#' + this._uid).owlCarousel(this.options);
}
});