useCycleList 
アイテムのリストを順に切り替えます。
Vue Schoolのこの無料ビデオレッスンで、useCycleListを使用して画像カルーセルを作成する方法を学びましょう!デモ 
犬
使い方 
ts
import { useCycleList } from '@vueuse/core'
const { state, next, prev, go } = useCycleList([
  'Dog',
  'Cat',
  'Lizard',
  'Shark',
  'Whale',
  'Dolphin',
  'Octopus',
  'Seal',
])
console.log(state.value) // 'Dog'
prev()
console.log(state.value) // 'Seal'
go(3)
console.log(state.value) // 'Shark'型宣言 
typescript
export interface UseCycleListOptions<T> {
  /**
   * The initial value of the state.
   * A ref can be provided to reuse.
   */
  initialValue?: MaybeRef<T>
  /**
   * The default index when
   */
  fallbackIndex?: number
  /**
   * Custom function to get the index of the current value.
   */
  getIndexOf?: (value: T, list: T[]) => number
}
/**
 * Cycle through a list of items
 *
 * @see https://vueuse.dokyumento.jp/useCycleList
 */
export declare function useCycleList<T>(
  list: MaybeRefOrGetter<T[]>,
  options?: UseCycleListOptions<T>,
): UseCycleListReturn<T>
export interface UseCycleListReturn<T> {
  state: Ref<T>
  index: Ref<number>
  next: (n?: number) => T
  prev: (n?: number) => T
  /**
   * Go to a specific index
   */
  go: (i: number) => T
}ソース 
貢献者 
変更履歴 
v12.0.0-beta.1 2024/11/21v10.8.0 2024/02/20v10.1.0 2023/04/22v10.0.0-beta.4 2023年4月13日4d757 - feat(types)!: MaybeComputedRef を MaybeRefOrGetter にリネーム10e98 - feat(toRef)!: resolveRef を toRef にリネーム0a72b - feat(toValue): resolveUnref を toValue にリネームv10.0.0-beta.0 2023年3月14日