-
Notifications
You must be signed in to change notification settings - Fork 370
Closed
Labels
Description
Version
2.2.2
Vue.js version
2.4.2 (with nuxt 1.0.0-rc11)
What is expected?
infinite-loading should fire 'infinite' event as usual
What is actually happening?
the event is not fired anymore since 2.2.2 (working in 2.2.1)
How to reproduce this problem?
Use the component as usual, but the handler is never called:
<no-ssr>
<InfiniteLoading @infinite="infiniteHandler"></InfiniteLoading>
</no-ssr>
...
methods: {
infiniteHandler ($state) { console.log('never called') },
},