[Vuejs]-Is it possible to inject css into Vue component style section?

0👍

“You cannot change the styles dynamically at runtime from your component’s JavaScript – no.”

https://forum.vuejs.org/t/is-it-possible-to-inject-css-into-vue-component-style-section/38813/3?u=three60

-2👍

The vue documentation says that you can use

<style src="./my-component.css"></style>

I’m not sure if that’s exactly what you’re looking for, but that’s my best guess.

Leave a comment