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