I recently completed a tutorial on integrating Okta OAuth with VueJS. In my application, I have set up a default page that displays the "App.vue" component and switches to the "About.vue" component upon clicking the "/about" route. However, I encountered an issue where when I navigate to the "about" link, the content of the App.vue component is still visible below the About.vue component. I am puzzled as to why this is happening despite configuring the routes accordingly.
Here is a snippet from my main.js file:
...
The App.vue component structure is as follows:
...
The About.vue component structure is as follows:
...