When using the default Vue CLI setup, Vue is loaded from the index.html
page. To work with Vue and dynamic content on the page, everything is typically handled in the App.vue
file.
But what if you want to make significant layout changes to the page? How do you clean the entire page and start fresh? Would using another HTML page that is somehow called from index.html
but without Vue functionality be the solution?
It can be a bit confusing to understand how this process works. Can an alternative file other than index.html be used as the default file for Vue to load onto (considering the mount('#app') selector only looks in index.html)? Or am I missing something?