Zero to main(): How to Write a Bootloader from Scratch | Interrupt

You are correct that’s a chip reset would clear VTOR, but calling the Reset_Handler of the application does not cause the chip to reset! In other words, when you go from bootloader to app, VTOR does not change unless you explicitly set it.

Whether you set VTOR before jumping to the app (i.e. in the bootloader code), or after (i.e. in the app code) is really up to you.