[Vuejs]-What is the difference between importing in <style> and <script> vuejs?

0👍

The import '@/assets/scss/main-pc.scss') scss files shouldn’t be inside the <script> as it is scss file.
The scss files needs the respective loaders to compile and parse your css/scss/sass files.

Leave a comment