DEV Community

Discussion on: How to inline the style tag in Vue

Collapse
 
hmaesta profile image
Hugo Maestá

You can use <component> too.

<component :is="'style'" type="text/css">
    .element {
        color: {{ style.color }};
    }
</component>