You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
352 B

1 year ago
// import type { XtxGuessInstance } from '@/types/component'
import { ref } from 'vue'
/**
*
*/
export const useGuessList = () => {
// 获取猜你喜欢实例
const guessRef = ref()
const onScrolltolower = () => {
guessRef.value?.getMore()
}
// 返回
return {
onScrolltolower,
guessRef,
}
}