Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I used npx create-nuxt-app xxx to create a demo and found that when launched under ie9, it refreshs infinitely. I did not changed any configuration.

I looked for a lot of documentation and I guess it's because of the router history mode. Because when I updated to fallback: true , it stopped refreshing infinitely.

Indeed, IE11 is officially dead , Microsoft do not support it themselves. And, last stats that I found are saying that IE6-9 (4 versions combined so) are used for a total amount of 0.07% . Safe to say that you could probably ditch IE9 support. kissu Jul 15, 2022 at 10:27

History mode is not compatible with older browsers (and IE9 is definitely one of them).

You'll need to use the hash mode or have full page refreshs.

Here is an official source: https://github.com/vuejs/vue-router/issues/1675#issuecomment-321528860

Thank you for your reply, I found the reason for this, but I don't know how to solve it in nuxt. My company hopes to be compatible with the best, I am not happy to be compatible with IE9. Zachary Jul 19, 2022 at 11:06 @Zachary Internet Explorer is not supported by anybody anymore, not even Microsoft. So yeah, move on and let it just die haha. kissu Jul 19, 2022 at 12:28

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question . Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers .