Versions:
@inertiajs/inertia version:0.9.4
@inertiajs/inertia-vue3 version: 0.4.7
Describe the problem:
I'm using $inertia.reload() in my mounted hook to fetch data that takes a bit longer to retrieve (3rd party API). However, doing this no longer shows the progress indicators, via InertiaProgress.
Steps to reproduce:
- Navigate to a page, with standard injected props.
- In your components
mounted() lifecycle hook, make another request using the only option.
this.$inertia.reload({
only: ['someApiData', 'someMoreApiData',],
})