必须要包含图片内容?
Lingouzi opened this issue · 6 comments
Lingouzi commented
content 使用文字不可以么?
gk-shi commented
Lingouzi commented
刚试了下,setup 返回的数据没有加载一直显示 loading,会是什么问题呢?
<v3-waterfall class="waterfall" :list="items" @scrollReachBottom="getList">
<template #default="{item}">
{{ item }}
</template>
</v3-waterfall>
setup 部分代码:
const state = reactive({
items: [],
})
function xx(){
notes().then(res=>{
state.items = res.data
})
return {
...toRefs(state),
getList
}
}
gk-shi commented
@Lingouzi 我尝试在 example/
的项目里按照你提供的代码片段的调用方式,依然是能够正常显示的。😂,如果方便的话,可以提供一个无法正常使用的最小项目 github 地址给我,我可以看下。
Lingouzi commented
https://gitee.com/linyun2018/test-waterfall.git
@gk-shi 基本上什么都没有的,这种使用方式是否正确?