We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
首先感谢vue-waterfall-easy提供这么好的瀑布流,真心解决了很大的一部分工作 但是在使用的过程中发现一个问题,如题 当我使用对象数组imgsArr 搭配slot进行瀑布流布局的时候 发现第一次渲染ok 然后我尝试更新对象数组中的某个对象(此处也使用了$set等确保数据进行了正确变更)
通过chrome打印发现data中的imgsArr数据已经变更 但是页面上的slot的item_title和item_content没有进行变更 导致更改了数据只能重新进行一次数据请求,对用户非常不友好,请问如何解决该问题?
代码示例: `<vueWaterfallEasy ref="waterfall" :imgsArr="dataList" srcKey="topImg" @scrollReachBottom="loaddata" >
<div class="product" slot-scope="props" @click="goto_shopDetails(props.value.pid)"> <div class="item_title">{{props.value.title}}</div> <div class="item_content">{{props.value.content}}</div> </div>
< /vueWaterfallEasy> `
再次感谢~~~
The text was updated successfully, but these errors were encountered:
No branches or pull requests
首先感谢vue-waterfall-easy提供这么好的瀑布流,真心解决了很大的一部分工作
但是在使用的过程中发现一个问题,如题
当我使用对象数组imgsArr 搭配slot进行瀑布流布局的时候 发现第一次渲染ok
然后我尝试更新对象数组中的某个对象(此处也使用了$set等确保数据进行了正确变更)
通过chrome打印发现data中的imgsArr数据已经变更 但是页面上的slot的item_title和item_content没有进行变更 导致更改了数据只能重新进行一次数据请求,对用户非常不友好,请问如何解决该问题?
代码示例:
`<vueWaterfallEasy ref="waterfall" :imgsArr="dataList" srcKey="topImg" @scrollReachBottom="loaddata" >
< /vueWaterfallEasy>
`
再次感谢~~~
The text was updated successfully, but these errors were encountered: