Ionic 6 Infinite scroll bug with Vue Vite

Hi !

Recently I tried to implement Ionic Infinite Scroll, which would fetch data from axios, but faced with an issue, it just doesn’t work out. Seems like an integrational issue with Ionic itself. Same code works fine with Vue Cli. Checked everything and noticed, that problem might be with positional property. Perhaps it just doesnt detects event when viewport hits the bottom of container, eventually data doesnt fetches

I’ve recreated problem here : Stackblitz

Package JSON :

“dependencies”: {

"@ionic/vue": "^6.0.11",

"@ionic/vue-router": "^6.0.11",

"@vue/compiler-sfc": "^3.2.31",

"axios": "^0.26.1",

"vue": "^3.2.25",

"vue-router": "^4.0.14"

},

“devDependencies”: {

"@vitejs/plugin-vue": "^2.2.0",

"vite": "^2.8.0"

}

Literally same code, but with Vue Cli: github

Thanks