Not sure how I should use components. I'm not using a modular build.
import Glide from '@glidejs/glide'
var glide = new Glide('.glide')
glide.on('build.after', function() {
// How do I access the component Sizes and the property slideWidth here?
})
glide.mount()
You do not have access to the collection of components in events callbacks. You have to create a custom component instead. More info in documentation.