npm install
npm run serve
There are 3 files, Alpha.vue, Bravo.vue, and Charlie.vue. All 3 import a service which imports the router. Components fail to render based on the Alphabetical order of the filenames.
Notice the blank page (this component fails to render because of the import statement)
Notice the Bravo component renders with the text "Bravo"
Notice the Charlie component renders with the text "Charlie"
import service from '@/service'
Notice the Alpha component renders with the text "Alpha" (this didn't work before)
Notice the blank page (now this component fails to render)
Notice the Charlie component renders with the text "Charlie"