What happens when a project built with vue-cli references a vue-awesome-swiper component and the drop function is invalid?

clipboard.png
onslidechangeEnd event is invalid. Why

Mar.12,2021

because this event is not registered when vue is encapsulated, you need to use ref to get dom, to register yourself

<swiper :options="swiperOption" ref="swiper">
this.$refs.swiper.swiper.on('slideChangeEnd', (e) => {
   console.log(e.activeIndex)
})
Menu