[Vuejs]-How can I enable in-page navigation in a Quasar 2 / Vue 3 app?

0👍

Yup, missing something simple. I’d introduced a new component for handling the menu items. It had an <a href="new-page">New page</a> instead of a <router-link to="new-page">New page</router-link>. The router-link component does the navigation I want.

Sheesh.

Leave a comment