0 votes
in VueJS by

Is it possible to mix both local and global styles?

1 Answer

0 votes
by

Yes, you can include both scoped and non-scoped styles in the same component. If you don't mention scoped attribute then it will become global style.

<style>
/* global styles */
</style>

<style scoped>
/* local styles */
</style>

Related questions

0 votes
asked Sep 6, 2023 in VueJS by DavidAnderson
0 votes
asked Sep 9, 2023 in VueJS by DavidAnderson
...