Can I ask a simple question that's challenging for me? It pertains to the compilation of Vue.js based on webpack.
I am relatively new to Vue.js, particularly in regards to this boilerplate (https://github.com/chrisvfritz/vue-enterprise-boilerplate). I have a desire to create an app using this boilerplate.
After installing the boilerplate, I decided to integrate "vuetify" (a responsive GUI plugin) into my app. Achieving a responsive UI was no easy task, but eventually, they were able to work harmoniously together.
View image of Vue and Vuetify working side by side
When adding vuetify, helloWorld.vue automatically gets added to ./src/components, however, it is not compiled or transpiled. Consequently, whenever I run "yarn dev" to launch the development server, I encounter a message similar to the one below:
./HelloWorld in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/app.vue?vue&type=script&lang=js&
I would like guidance on how to compile HelloWorld.vue and ensure it is included in the output file like app.js. Attempts to move HelloWordl.vue to ./src proved unsuccessful as well.
I'm simply seeking small hints to help me with this issue.
Thank you in advance. June, Chung