Global public stylesheets, such as common.scss
can be referenced in main.js, code such as:
import "./assets/css/common.scss"
can also be referenced in App.js, such as:
<style lang="scss">
@import "./assets/css/common.scss";
</style>
what are the differences (details) between them?