[Vuejs]-Vue 2 app rendering only one view as blank in production

0👍

match, thank you for the reminder about going back to the basics. I replaced the file and it still did not work. But it did at least eliminate a problem with that file.

For anyone seeing this later, what I did to fix the problem was

–Rename the file to Registration.vue

–changed

export default {
    name: "Register",

to:

export default {
    name: "Registration",

–Updated the route accordingly. Reran the "npm run build" command.

All worked fine. My best guess is some kind of caching problem somewhere along the line. It may not have gotten to the root problem but it got my app working and kept my efforts moving along.

Leave a comment