[Vuejs]-How to get the array in object when press a certain button

1👍

It looks like you haven’t defined the handleActiveIndex function.

const handleActiveIndex = (index) => {
  activeIndex.value = index;
};

return { 
  modules: [Pagination, Navigation],
  activeIndex, 
  labels, 
  handleActiveIndex, // return this function 
};

Leave a comment